/* GamblingPedia Pro - Main Styles */
/* Deferred loading - non-critical styles */

/* ========================================
   SEARCH OVERLAY
   ======================================== */
.gp-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--gp-bg-dark);
  padding: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.gp-search-overlay.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.gp-search-overlay__container {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.gp-search-overlay .gp-search-form {
  flex: 1;
  display: flex;
}

.gp-search-overlay .gp-search-form__input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 0.375rem 0 0 0.375rem;
  font-size: 1rem;
  background: #fff;
  color: var(--gp-text-primary);
}

.gp-search-overlay .gp-search-form__input:focus {
  outline: none;
}

.gp-search-overlay .gp-search-form__submit {
  padding: 0.875rem 1.25rem;
  background: var(--gp-accent-primary);
  color: #fff;
  border: none;
  border-radius: 0 0.375rem 0.375rem 0;
  cursor: pointer;
}

.gp-search-overlay__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.gp-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  visibility: hidden;
}

.gp-mobile-menu.is-active {
  visibility: visible;
}

.gp-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.gp-mobile-menu.is-active .gp-mobile-menu__overlay {
  opacity: 1;
}

.gp-mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: var(--gp-bg-primary);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.gp-mobile-menu.is-active .gp-mobile-menu__drawer {
  transform: translateX(0);
}

.gp-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--gp-border);
}

.gp-mobile-menu__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gp-text-primary);
}

.gp-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--gp-text-secondary);
  cursor: pointer;
}

.gp-mobile-menu__nav {
  flex: 1;
  padding: 1rem;
}

.gp-mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-mobile-nav-menu li {
  border-bottom: 1px solid var(--gp-border);
}

.gp-mobile-nav-menu a {
  display: block;
  padding: 0.875rem 0;
  color: var(--gp-text-primary);
  font-weight: 500;
}

.gp-mobile-nav-menu a:hover {
  color: var(--gp-accent-primary);
  text-decoration: none;
}

.gp-mobile-nav-menu .sub-menu {
  list-style: none;
  padding: 0 0 0 1rem;
}

.gp-mobile-nav-menu .sub-menu a {
  font-size: 0.9375rem;
  color: var(--gp-text-secondary);
}

.gp-mobile-menu__search {
  display: flex;
  padding: 1rem;
  border-top: 1px solid var(--gp-border);
  background: var(--gp-bg-secondary);
}

.gp-mobile-menu__search-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--gp-border);
  border-right: none;
  border-radius: 0.375rem 0 0 0.375rem;
  font-size: 1rem;
}

.gp-mobile-menu__search-btn {
  padding: 0.75rem 1rem;
  background: var(--gp-accent-primary);
  color: #fff;
  border: none;
  border-radius: 0 0.375rem 0.375rem 0;
  cursor: pointer;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.gp-breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.gp-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.gp-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gp-breadcrumbs__link {
  color: var(--gp-text-muted);
}

.gp-breadcrumbs__link:hover {
  color: var(--gp-accent-primary);
}

.gp-breadcrumbs__separator {
  color: var(--gp-text-muted);
  opacity: 0.5;
}

.gp-breadcrumbs__current {
  color: var(--gp-text-secondary);
}

/* ========================================
   CATEGORY CARDS
   ======================================== */
.gp-category-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .gp-category-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gp-category-cards { grid-template-columns: repeat(6, 1fr); }
}

.gp-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  background: var(--gp-bg-primary);
  border: 1px solid var(--gp-border);
  border-radius: 0.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gp-category-card:hover {
  border-color: var(--gp-accent-primary);
  box-shadow: var(--gp-shadow-md);
  text-decoration: none;
}

.gp-category-card__name {
  font-weight: 600;
  color: var(--gp-text-primary);
  margin-bottom: 0.25rem;
}

.gp-category-card__count {
  font-size: 0.75rem;
  color: var(--gp-text-muted);
}

.gp-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gp-category-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gp-bg-secondary);
  border: 1px solid var(--gp-border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--gp-text-secondary);
  transition: background 0.15s, border-color 0.15s;
}

.gp-category-pill:hover {
  background: var(--gp-accent-primary);
  border-color: var(--gp-accent-primary);
  color: #fff;
  text-decoration: none;
}

/* ========================================
   CASINO GRID
   ======================================== */
.gp-casino-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gp-casino-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gp-casino-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   CASINO CARD
   ======================================== */
.gp-casino-card {
  background: var(--gp-bg-primary);
  border: 1px solid var(--gp-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gp-casino-card:hover {
  box-shadow: var(--gp-shadow-md);
  transform: translateY(-2px);
}

.gp-casino-card__rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  color: #fff;
}

.gp-casino-card__rating-value {
  font-weight: 700;
}

.gp-casino-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--gp-bg-secondary);
  min-height: 120px;
}

.gp-casino-card__logo img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.gp-casino-card__logo-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gp-accent-primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 0.5rem;
}

.gp-casino-card__content {
  padding: 1rem;
}

.gp-casino-card__name {
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
  text-align: center;
}

.gp-casino-card__name a {
  color: var(--gp-text-primary);
}

.gp-casino-card__name a:hover {
  color: var(--gp-accent-primary);
}

.gp-casino-card__bonus {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--gp-bg-secondary);
  border-radius: 0.375rem;
}

.gp-casino-card__bonus-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gp-text-muted);
  margin-bottom: 0.25rem;
}

.gp-casino-card__bonus-value {
  font-weight: 600;
  color: var(--gp-accent-green);
}

.gp-casino-card__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.875rem;
}

.gp-casino-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  color: var(--gp-text-secondary);
}

.gp-casino-card__features svg {
  color: var(--gp-accent-green);
  flex-shrink: 0;
}

.gp-casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.gp-casino-card__bonus-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--gp-bg-tertiary);
  font-size: 0.875rem;
  border-top: 1px solid var(--gp-border);
}

.gp-casino-card__bonus-code-label {
  color: var(--gp-text-muted);
}

.gp-casino-card__bonus-code-value {
  font-family: monospace;
  font-weight: 600;
  background: var(--gp-bg-primary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px dashed var(--gp-border);
}

/* ========================================
   LOAD MORE
   ======================================== */
.gp-load-more {
  text-align: center;
  margin-top: 2rem;
}

.gp-load-more__btn {
  min-width: 200px;
}

.gp-load-more__btn.is-loading .gp-load-more__text {
  display: none;
}

.gp-load-more__loading {
  display: none;
}

.gp-load-more__btn.is-loading .gp-load-more__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gp-spinner {
  animation: spin 1s linear infinite;
}

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

/* ========================================
   PAGINATION
   ======================================== */
.gp-pagination {
  margin-top: 2.5rem;
}

.gp-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-pagination .page-numbers li {
  display: flex;
}

.gp-pagination a,
.gp-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: var(--gp-bg-primary);
  border: 1px solid var(--gp-border);
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  color: var(--gp-text-secondary);
  transition: all 0.15s;
}

.gp-pagination a:hover {
  background: var(--gp-accent-primary);
  border-color: var(--gp-accent-primary);
  color: #fff;
  text-decoration: none;
}

.gp-pagination .current {
  background: var(--gp-accent-primary);
  border-color: var(--gp-accent-primary);
  color: #fff;
}

.gp-pagination .prev,
.gp-pagination .next {
  gap: 0.375rem;
}

/* ========================================
   ARTICLE PAGE
   ======================================== */
.gp-article {
  padding-bottom: 3rem;
}

.gp-article__header {
  padding: 1.5rem 0 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gp-article__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gp-text-muted);
  margin-bottom: 1rem;
}

.gp-article__meta-sep {
  opacity: 0.5;
}

.gp-article__category {
  font-weight: 600;
  color: var(--gp-accent-primary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}

.gp-article__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .gp-article__title { font-size: 2.5rem; }
}

.gp-article__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gp-article__author-avatar {
  border-radius: 50%;
}

.gp-article__author-info {
  text-align: left;
}

.gp-article__author-name {
  display: block;
  font-weight: 600;
  color: var(--gp-text-primary);
}

.gp-article__author-role {
  font-size: 0.875rem;
  color: var(--gp-text-muted);
}

.gp-article__featured-image {
  margin: 0 0 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.gp-article__featured-image img {
  width: 100%;
}

.gp-article__image-caption {
  padding: 0.75rem;
  background: var(--gp-bg-secondary);
  font-size: 0.875rem;
  color: var(--gp-text-muted);
  text-align: center;
}

/* Table of Contents */
.gp-article__toc-wrapper {
  margin-bottom: 2rem;
}

.gp-toc {
  background: var(--gp-bg-secondary);
  border-radius: 0.5rem;
  padding: 1.25rem;
  max-width: 600px;
}

.gp-toc__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gp-text-primary);
  margin-bottom: 0.75rem;
}

.gp-toc__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
}

.gp-toc__item {
  margin: 0.375rem 0;
}

.gp-toc__item a {
  color: var(--gp-text-secondary);
  font-size: 0.9375rem;
}

.gp-toc__item a:hover {
  color: var(--gp-accent-primary);
}

.gp-toc__item--h3 {
  margin-left: 1rem;
  font-size: 0.875rem;
}

/* Article Content */
.gp-article__content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.gp-article__content > * + * {
  margin-top: 1.5rem;
}

.gp-article__content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gp-border);
}

.gp-article__content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.gp-article__content h4 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

.gp-article__content p {
  margin: 0;
}

.gp-article__content a {
  color: var(--gp-accent-primary);
  text-decoration: none;
}

.gp-article__content ul,
.gp-article__content ol {
  padding-left: 1.5rem;
}

.gp-article__content li {
  margin: 0.5rem 0;
}

.gp-article__content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--gp-accent-primary);
  background: var(--gp-bg-secondary);
  font-style: italic;
}

.gp-article__content img {
  border-radius: 0.5rem;
}

.gp-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.gp-article__content th,
.gp-article__content td {
  padding: 0.75rem;
  border: 1px solid var(--gp-border);
  text-align: left;
}

.gp-article__content th {
  background: var(--gp-bg-secondary);
  font-weight: 600;
}

/* Tags */
.gp-article__footer {
  max-width: 800px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gp-border);
}

.gp-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.gp-article__tags-label {
  font-weight: 600;
  color: var(--gp-text-secondary);
}

.gp-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--gp-bg-secondary);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: var(--gp-text-secondary);
}

.gp-tag:hover {
  background: var(--gp-accent-primary);
  color: #fff;
  text-decoration: none;
}

/* Author Box */
.gp-author-box {
  display: flex;
  gap: 1.5rem;
  max-width: 800px;
  margin: 2.5rem auto;
  padding: 1.5rem;
  background: var(--gp-bg-secondary);
  border-radius: 0.5rem;
}

.gp-author-box__avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.gp-author-box__content {
  flex: 1;
}

.gp-author-box__name {
  font-size: 0.875rem;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}

.gp-author-box__bio {
  font-size: 0.9375rem;
  color: var(--gp-text-secondary);
  margin-bottom: 0.75rem;
}

.gp-author-box__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gp-accent-primary);
}

/* Related Posts */
.gp-related-posts {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--gp-border);
}

.gp-related-posts__title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ========================================
   ARCHIVE & SEARCH
   ======================================== */
.gp-archive,
.gp-search-results {
  padding: 0 0 3rem;
}

.gp-archive__header,
.gp-search-results__header {
  padding: 2rem 0;
  text-align: center;
}

.gp-archive__title,
.gp-search-results__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gp-archive__description {
  color: var(--gp-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gp-search-results__term {
  color: var(--gp-accent-primary);
}

.gp-search-results__count {
  color: var(--gp-text-muted);
  margin-bottom: 1.5rem;
}

/* Search Form Inline */
.gp-search-form--inline {
  display: flex;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.gp-search-form--inline .gp-search-form__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gp-border);
  border-right: none;
  border-radius: 0.375rem 0 0 0.375rem;
  font-size: 1rem;
}

.gp-search-form--inline .gp-btn {
  border-radius: 0 0.375rem 0.375rem 0;
}

/* No Results */
.gp-no-results {
  text-align: center;
  padding: 3rem 1rem;
}

.gp-no-results__icon {
  color: var(--gp-text-muted);
  margin-bottom: 1.5rem;
}

.gp-no-results h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gp-no-results p {
  color: var(--gp-text-muted);
  margin-bottom: 1.5rem;
}

.gp-no-results__suggestions {
  text-align: left;
  max-width: 300px;
  margin: 0 auto 2rem;
}

.gp-no-results__suggestions h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.gp-no-results__suggestions ul {
  color: var(--gp-text-muted);
  font-size: 0.9375rem;
}

.gp-no-results__categories {
  margin-bottom: 2rem;
}

.gp-no-results__categories h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* ========================================
   404 PAGE
   ======================================== */
.gp-404 {
  padding: 3rem 0;
}

.gp-404__content {
  text-align: center;
}

.gp-404__icon {
  color: var(--gp-text-muted);
  margin-bottom: 1.5rem;
}

.gp-404__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gp-404__description {
  color: var(--gp-text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.gp-404__search {
  margin-bottom: 1.5rem;
}

.gp-404__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gp-404__categories,
.gp-404__recent {
  margin-top: 2rem;
}

.gp-404__categories h2,
.gp-404__recent h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* ========================================
   PAGE TEMPLATE
   ======================================== */
.gp-page-single {
  padding: 0 0 3rem;
}

.gp-page-single__header {
  padding: 2rem 0;
  text-align: center;
}

.gp-page-single__title {
  font-size: 2.5rem;
}

.gp-page-single__featured-image {
  margin: 0 0 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.gp-page-single__content {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.gp-page-links {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gp-border);
}

.gp-page-links__number {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  background: var(--gp-bg-secondary);
  border-radius: 0.25rem;
}

/* ========================================
   REVIEWS PAGE TEMPLATE
   ======================================== */
.gp-reviews-page {
  padding: 0 0 3rem;
}

.gp-reviews-page__header {
  padding: 2rem 0;
  text-align: center;
}

.gp-reviews-page__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gp-reviews-page__description {
  color: var(--gp-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gp-reviews-page__content {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.gp-reviews-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--gp-bg-secondary);
  border-radius: 0.5rem;
}

.gp-reviews-filter__label {
  font-weight: 500;
  color: var(--gp-text-secondary);
}

.gp-reviews-filter__options {
  display: flex;
  gap: 0.5rem;
}

.gp-reviews-filter__btn {
  padding: 0.5rem 1rem;
  background: var(--gp-bg-primary);
  border: 1px solid var(--gp-border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--gp-text-secondary);
  transition: all 0.15s;
}

.gp-reviews-filter__btn:hover,
.gp-reviews-filter__btn.active {
  background: var(--gp-accent-primary);
  border-color: var(--gp-accent-primary);
  color: #fff;
  text-decoration: none;
}

/* ========================================
   CASINO INFO BOX (Single Review)
   ======================================== */
.gp-casino-info-box {
  background: var(--gp-bg-primary);
  border: 2px solid var(--gp-border);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.gp-casino-info-box__header {
  padding: 1rem;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  text-align: center;
}

.gp-casino-info-box__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
}

.gp-casino-info-box__rating-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.gp-casino-info-box__body {
  padding: 1.5rem;
}

.gp-casino-info-box__name {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

.gp-casino-info-box__highlight {
  text-align: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--gp-bg-secondary);
  border-radius: 0.375rem;
}

.gp-casino-info-box__highlight-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.gp-casino-info-box__highlight-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gp-accent-green);
}

.gp-casino-info-box__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gp-casino-info-box__detail {
  margin: 0;
}

.gp-casino-info-box__detail dt {
  font-size: 0.75rem;
  color: var(--gp-text-muted);
  margin-bottom: 0.125rem;
}

.gp-casino-info-box__detail dd {
  margin: 0;
  font-weight: 500;
  color: var(--gp-text-primary);
}

.gp-casino-info-box__payments {
  font-size: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gp-border);
}

.gp-casino-info-box__payments-label {
  font-weight: 500;
}

.gp-casino-info-box__payments-list {
  color: var(--gp-text-muted);
}

.gp-casino-info-box__pros-cons {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gp-border);
}

@media (min-width: 640px) {
  .gp-casino-info-box__pros-cons { grid-template-columns: 1fr 1fr; }
}

.gp-casino-info-box__pros h4,
.gp-casino-info-box__cons h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.gp-casino-info-box__pros ul,
.gp-casino-info-box__cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.gp-casino-info-box__pros li,
.gp-casino-info-box__cons li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.gp-casino-info-box__pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gp-accent-green);
  font-weight: 700;
}

.gp-casino-info-box__cons li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gp-accent-red);
  font-weight: 700;
}

.gp-casino-info-box__bonus-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--gp-bg-tertiary);
  border-radius: 0.375rem;
}

.gp-casino-info-box__bonus-code-label {
  font-size: 0.875rem;
  color: var(--gp-text-muted);
}

.gp-casino-info-box__bonus-code-value {
  font-family: monospace;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: var(--gp-bg-primary);
  border: 1px dashed var(--gp-accent-primary);
  border-radius: 0.25rem;
}

.gp-casino-info-box__copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  background: transparent;
  border: none;
  color: var(--gp-text-muted);
  cursor: pointer;
}

.gp-casino-info-box__copy-btn:hover {
  color: var(--gp-accent-primary);
}

.gp-casino-info-box__actions {
  padding: 0 1.5rem 1rem;
}

.gp-casino-info-box__disclaimer {
  text-align: center;
  padding: 0.75rem;
  margin: 0;
  background: var(--gp-bg-secondary);
  font-size: 0.75rem;
  color: var(--gp-text-muted);
}

/* ========================================
   PROS & CONS SHORTCODE
   ======================================== */
.gp-pros-cons {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .gp-pros-cons { grid-template-columns: 1fr 1fr; }
}

.gp-pros-cons__pros,
.gp-pros-cons__cons {
  padding: 1rem;
  border-radius: 0.5rem;
}

.gp-pros-cons__pros {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.gp-pros-cons__cons {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.gp-pros-cons__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.gp-pros-cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-pros-cons li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.gp-pros-cons__pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gp-accent-green);
  font-weight: 700;
}

.gp-pros-cons__cons li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gp-accent-red);
  font-weight: 700;
}

/* ========================================
   INFO BOX SHORTCODE
   ======================================== */
.gp-info-box {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.gp-info-box--info {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--gp-accent-primary);
}

.gp-info-box--warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--gp-accent-gold);
}

.gp-info-box--success {
  background: rgba(22, 163, 74, 0.1);
  border-color: var(--gp-accent-green);
}

.gp-info-box--danger {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--gp-accent-red);
}

.gp-info-box__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ========================================
   FEATURED CASINO SHORTCODE
   ======================================== */
.gp-featured-casino {
  background: var(--gp-bg-primary);
  border: 2px solid var(--gp-accent-primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.gp-featured-casino__header {
  margin-bottom: 1rem;
}

.gp-featured-casino__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gp-featured-casino__rating-value {
  font-weight: 600;
  color: var(--gp-accent-gold);
}

.gp-featured-casino__content {
  text-align: center;
  margin-bottom: 1rem;
}

.gp-featured-casino__logo {
  margin-bottom: 1rem;
}

.gp-featured-casino__logo img {
  max-height: 80px;
  margin: 0 auto;
}

.gp-featured-casino__name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gp-featured-casino__bonus {
  color: var(--gp-accent-green);
  font-weight: 500;
  margin-bottom: 1rem;
}

.gp-featured-casino__features {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.gp-featured-casino__features li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gp-featured-casino__features svg {
  color: var(--gp-accent-green);
}

.gp-featured-casino__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

/* ========================================
   STAR RATING
   ======================================== */
.gp-star-rating {
  display: inline-flex;
  gap: 0.125rem;
}

.gp-star--full { color: var(--gp-accent-gold); }
.gp-star--half { color: var(--gp-accent-gold); }
.gp-star--empty { color: var(--gp-border); }

/* ========================================
   FOOTER
   ======================================== */
.gp-footer {
  background: var(--gp-bg-dark);
  color: rgba(255,255,255,0.8);
}

.gp-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gp-footer__widgets {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gp-footer__widget-area {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gp-footer__widget-area { grid-template-columns: repeat(3, 1fr); }
}

.gp-footer-widget-title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.gp-footer-widget a {
  color: rgba(255,255,255,0.7);
}

.gp-footer-widget a:hover {
  color: #fff;
  text-decoration: none;
}

.gp-footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.gp-footer-widget li {
  margin: 0.5rem 0;
}

.gp-footer__middle {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gp-footer__nav {
  margin-bottom: 1.5rem;
}

.gp-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-footer-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}

.gp-footer-menu a:hover {
  color: #fff;
}

.gp-footer__responsible {
  text-align: center;
}

.gp-footer__responsible h4 {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.gp-footer__responsible p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.gp-footer__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gp-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.gp-badge--18 {
  background: var(--gp-accent-red);
  color: #fff;
}

.gp-badge--gambleaware {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.gp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.gp-footer__copyright p {
  margin: 0;
  font-size: 0.875rem;
}

.gp-footer__language {
  font-size: 0.875rem;
}

.gp-lang-list {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-lang-list a {
  color: rgba(255,255,255,0.7);
}

.gp-lang-list a:hover {
  color: #fff;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 639px) {
  .gp-article-grid--cols-3,
  .gp-article-grid--cols-4 {
    grid-template-columns: 1fr;
  }

  .gp-casino-grid--cols-3 {
    grid-template-columns: 1fr;
  }

  .gp-author-box {
    flex-direction: column;
    text-align: center;
  }

  .gp-404__actions {
    flex-direction: column;
  }
}

/* Print styles */
@media print {
  .gp-header,
  .gp-breaking-news,
  .gp-footer,
  .gp-mobile-menu,
  .gp-search-overlay,
  .gp-load-more,
  .gp-pagination {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .gp-article__content a {
    text-decoration: none;
  }

  .gp-article__content a::after {
    content: " (" attr(href) ")";
    font-size: 0.875em;
  }
}
