
.game-banner {
  position: relative;
  height: 45vh;
  min-height: 300px;
  overflow: hidden;
  margin-top: 80px;
}

.game-banner-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.9);
}

.game-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-lg);
  background: linear-gradient(0deg, var(--color-bg) 0%, transparent 60%);
  z-index: 2;
}

.game-genre-badges {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.genre-badge {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(78, 205, 196, 0.15);
  color: var(--color-neon);
  border: 1px solid var(--color-neon);
  padding: 2px 8px;
  border-radius: 4px;
}

.game-title-header {
  font-size: 2.2rem;
  margin-bottom: var(--space-xs);
}

.game-developer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.game-developer span {
  color: var(--color-accent);
}

.game-stats-bar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin: calc(-1 * var(--space-lg)) auto var(--space-xl);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
  z-index: 5;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .game-stats-bar {
    grid-template-columns: repeat(4, 1fr);
    margin-top: calc(-1 * var(--space-xl));
  }
}

.stat-item {
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat-item:nth-child(2) {
    border-right: none;
  }
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.demo-mockup-frame {
  background: #111;
  border: 12px solid #222;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-neon);
  margin: var(--space-lg) 0;
}

.demo-iframe-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #1a1f3c 0%, #0c0d1b 100%);
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-lg);
}

.demo-placeholder-icon {
  width: 60px;
  height: 60px;
  fill: var(--color-accent);
  margin-bottom: var(--space-md);
  animation: pulseNeon 2s infinite ease-in-out;
}

@keyframes pulseNeon {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(200, 155, 60, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(200, 155, 60, 0.8));
    transform: scale(1.05);
  }
}

.demo-placeholder-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

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

.bonus-card {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateX(4px);
  background: var(--color-surface-2);
}

.bonus-title {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.bonus-trigger {
  font-size: 0.8rem;
  color: var(--color-neon);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  min-width: 600px;
}

.comparison-table th {
  background: var(--color-surface-2);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  padding: var(--space-md);
  border-bottom: 2px solid var(--color-accent);
}

.comparison-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background: rgba(26, 31, 60, 0.2);
}

.comparison-table tr:hover td {
  color: var(--color-text);
  background: rgba(200, 155, 60, 0.05);
}

.comparison-table td strong {
  color: var(--color-text);
}

.faq-accordion {
  max-width: 850px;
  margin: var(--space-xl) auto 0;
}

.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--color-accent);
}

.accordion-header {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.accordion-question {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.accordion-icon {
  width: 12px;
  height: 12px;
  fill: var(--color-accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.pro-con-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pro-con-card.pros-card {
  border-top: 4px solid var(--color-success);
}

.pro-con-card.cons-card {
  border-top: 4px solid var(--color-accent);
}

.pro-con-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.pros-card .pro-con-title {
  color: var(--color-success);
}

.cons-card .pro-con-title {
  color: var(--color-accent);
}

.pro-con-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pro-con-item {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.pro-con-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
}

.pros-card .pro-con-item::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
}

.cons-card .pro-con-item::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C89B3C'%3E%3Cpath d='M19 13H5v-2h14v2z'/%3E%3C/svg%3E") no-repeat center;
}

.contact-section {
  max-width: 900px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: var(--space-md);
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.form-control {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-checkbox input {
  margin-top: 4px;
}

.error-message {
  color: var(--color-danger);
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-control {
  border-color: var(--color-danger);
}

.form-group.has-error .error-message {
  display: block;
}

.form-success-message {
  display: none;
  text-align: center;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--color-success);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.form-success-title {
  color: var(--color-success);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.honeypot-field {
  display: none;
  position: absolute;
  left: -9999px;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
}

.about-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
  margin-top: var(--space-lg);
}

.policy-container {
  max-width: 800px;
  margin: 100px auto var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.policy-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
}

.policy-title {
  font-size: 2.2rem;
  margin-bottom: var(--space-xs);
  color: var(--color-accent);
}

.policy-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.policy-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.policy-body h2 {
  font-size: 1.3rem;
  text-align: left;
  margin: var(--space-lg) 0 var(--space-sm);
  text-transform: none;
  letter-spacing: 0.5px;
}

.policy-body h2::after {
  display: none;
}

.policy-body p {
  margin-bottom: var(--space-md);
}

.policy-body ul {
  list-style-type: square;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-body li {
  margin-bottom: var(--space-xs);
}

.ai-agent-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.ai-widget-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold), 0 5px 15px rgba(0,0,0,0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-widget-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  animation: pulseRing 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.ai-widget-button:hover {
  transform: scale(1.05);
}

.ai-widget-icon {
  width: 28px;
  height: 28px;
  fill: var(--color-bg);
  transition: transform 0.3s ease;
}

.ai-agent-widget.active .ai-widget-button {
  transform: rotate(90deg);
}

.ai-widget-panel {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 350px;
  height: 480px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  transform-origin: bottom right;
  animation: widgetPanelOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-agent-widget.active .ai-widget-panel {
  display: flex;
}

@keyframes widgetPanelOpen {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ai-panel-header {
  padding: var(--space-md);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.ai-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-weight: 700;
}

.ai-bot-info {
  flex: 1;
}

.ai-bot-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.ai-bot-status {
  font-size: 0.7rem;
  color: var(--color-success);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ai-bot-status::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-success);
}

.ai-panel-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-bg);
}

.ai-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.ai-msg.bot {
  align-self: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-bottom-left-radius: 0;
}

.ai-msg.user {
  align-self: flex-end;
  background: var(--gradient-gold);
  color: var(--color-bg);
  font-weight: 600;
  border-bottom-right-radius: 0;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  border-bottom-left-radius: 0;
  align-self: flex-start;
  display: none;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-text-muted);
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

.ai-quick-chips {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface-2);
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  white-space: nowrap;
  border-top: 1px solid var(--color-border);
}

.ai-chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 11px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ai-chip:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-2);
  background: var(--color-bg);
}

.ai-panel-input {
  padding: var(--space-md);
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-sm);
}

.ai-input-field {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.ai-input-field:focus {
  outline: none;
  border-color: var(--color-accent);
}

.ai-send-btn {
  background: var(--gradient-gold);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-send-icon {
  width: 16px;
  height: 16px;
  fill: var(--color-bg);
}

.responsive-map {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
}

.responsive-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qeq {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-neon);
  border: 12px solid #222;
  background: #111;
  margin: var(--space-lg) 0;
}

.qeq iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.related-games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .related-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-game-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

@media (min-width: 576px) {
  .related-game-card {
    flex-direction: row;
    height: 200px;
  }
}

.related-card-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}

@media (min-width: 576px) {
  .related-card-image-wrap {
    width: 45%;
    height: 100%;
    aspect-ratio: auto;
  }
}

.related-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(10, 11, 20, 0.85);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-2);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.related-card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.related-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 2px;
}

.related-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: 0.8rem;
}

.related-card-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-game-card .btn {
  align-self: flex-start;
  width: 100%;
  text-align: center;
}

@media (min-width: 576px) {
  .related-game-card .btn {
    width: auto;
  }
}

.related-game-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 35px rgba(200, 155, 60, 0.15), var(--shadow-neon);
}

.related-game-card:hover .related-card-image-wrap img {
  transform: scale(1.08);
}

.related-game-card:hover .related-card-title {
  color: var(--color-accent);
}
