

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cinzel:wght@600;700;800;900&display=optional');

:root {
  --bg-dark: #0a0a0d;
  --bg-card: #13131a;
  --bg-card-hover: #1e1e27;
  --accent-orange: #ff5722;
  --accent-gold: #ffd700;
  --text-light: #f5f5f7;
  --text-muted: #8e8e9f;
  --border-color: #24242d;
  --border-glow: rgba(255, 87, 34, 0.25);
  --shadow-glow: 0 0 15px rgba(255, 87, 34, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}


.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}


.site-header {
  background-color: rgba(10, 10, 13, 0.97);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo a {
  display: inline-block;
  white-space: nowrap;
}

.logo span {
  color: var(--accent-orange);
  text-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-nav {
  display: flex;
  gap: 15px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn {
  background-color: var(--accent-orange);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
}

.btn:hover {
  background-color: #d84315;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.5), 0 0 10px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
}

.btn-gold:hover {
  background-color: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.burger-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.burger-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

.burger-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.site-footer {
  background-color: #07070a;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col h3 {
  font-size: 1.1rem;
  color: var(--accent-orange);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--text-light);
}

.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-icons img {
  height: 24px;
  background-color: #ffffff;
  padding: 3px 6px;
  border-radius: 4px;
  transition: var(--transition);
}

.payment-icons img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}

.social-link {
  color: var(--accent-orange);
  font-weight: 500;
  text-decoration: underline;
}

.social-link:hover {
  color: var(--text-light);
}

.age-badge {
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 2px 6px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 3px;
  display: inline-block;
}


.hero-block {
  padding: 100px 0 80px;
  position: relative;
  text-align: center;
  background-color: rgba(255, 87, 34, 0.015);
  border-bottom: 1px solid var(--border-color);
}

.hero-tag {
  color: var(--accent-orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.hero-block h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-block h1 span {
  color: var(--accent-gold);
}

.hero-block p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 35px;
}

.hero-image-container {
  margin-top: 50px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 87, 34, 0.1);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}


.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: var(--accent-orange);
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 35px 25px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-orange);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: var(--shadow-glow);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}


.info-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.info-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.info-content h2 span {
  color: var(--accent-orange);
}

.info-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

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

.info-image img {
  width: 100%;
  height: auto;
  display: block;
}


.reviews-section {
  padding: 80px 0;
  background-color: #07070a;
  border-bottom: 1px solid var(--border-color);
}

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

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--accent-orange);
  background-color: rgba(255, 87, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--accent-orange);
  overflow: hidden; 
}

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

.review-info h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.review-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}


.faq-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 87, 34, 0.2);
}

.faq-question {
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 1rem;
}

.faq-question span {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 0 solid var(--border-color);
}

.faq-answer p {
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


.subs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.sub-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub-card.popular {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-orange);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sub-tier {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sub-coins {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.sub-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.sub-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
}


.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
}

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

.form-message {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  background-color: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(46, 125, 50, 0.4);
  color: #a5d6a7;
  display: block;
}

.form-message.error {
  background-color: rgba(198, 40, 40, 0.2);
  border: 1px solid rgba(198, 40, 40, 0.4);
  color: #ef9a9a;
  display: block;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-item-icon {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-item-details h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.contact-item-details p,
.contact-item-details a {
  font-size: 1.05rem;
  color: var(--text-light);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 7, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-overlay.show {
  opacity: 1;
  visibility: visible;
}

.age-gate-modal {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 0 40px rgba(255, 87, 34, 0.15);
  border-radius: 8px;
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}

.age-gate-logo {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.age-gate-logo span {
  color: var(--accent-orange);
}

.age-gate-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.age-gate-modal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.age-gate-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-restricted-view {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.age-restricted-view h2 {
  color: var(--accent-orange);
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 7, 0.94);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent-orange);
}

.auth-modal h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-align: center;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--accent-orange);
  font-weight: 600;
}


.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(19, 19, 26, 0.95);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-orange);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1000;
  transform: translateY(150px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-content a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.cookie-btn {
  background-color: var(--accent-orange);
  color: var(--text-light);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn:hover {
  background-color: #d84315;
}


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

.ai-toggle {
  width: 60px;
  height: 60px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(216, 67, 21, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-toggle:hover {
  transform: scale(1.08) rotate(5deg);
}

.ai-toggle svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.ai-chat-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 350px;
  height: 480px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
}

.ai-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-header {
  background-color: #07070a;
  border-bottom: 1px solid var(--border-color);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-header span {
  font-family: 'Cinzel', serif;
  color: var(--accent-orange);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.ai-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.ai-close:hover {
  color: var(--accent-orange);
}

.ai-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

.ai-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.ai-msg.bot {
  background-color: rgba(255, 87, 34, 0.08);
  border: 1px solid rgba(255, 87, 34, 0.15);
  align-self: flex-start;
  color: var(--text-light);
}

.ai-msg.user {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  align-self: flex-end;
  color: var(--text-light);
}

.ai-input-area {
  padding: 15px;
  border-top: 1px solid var(--border-color);
  background-color: #07070a;
  display: flex;
  gap: 10px;
}

.ai-input-area input {
  flex-grow: 1;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.ai-input-area button {
  background-color: var(--accent-orange);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.ai-input-area button:hover {
  background-color: #d84315;
}


.page-header {
  padding: 60px 0;
  text-align: center;
  background-color: rgba(255, 87, 34, 0.015);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

.page-header p {
  color: var(--text-muted);
}

.page-content {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-content h2 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  text-transform: uppercase;
}

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


.game-frame-container {
  width: 100%;
  max-width: 960px;
  height: 600px;
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--accent-orange);
  box-shadow: var(--shadow-glow), 0 15px 40px rgba(0, 0, 0, 0.7);
  background-color: #000;
  position: relative;
}

.game-frame-container iframe {
  width: 100%;
  height: calc(100% - 60px);
  border: none;
  display: block;
}

.game-disclaimer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #07070a;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 10;
  pointer-events: none;
}

.game-badge-top {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}


@media (max-width: 1024px) {
  .hero-block h1 {
    font-size: 2.8rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reviews-grid, .subs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1150px) {
  .burger-menu-btn {
    display: flex;
  }
  
  .nav-container {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 13, 0.98);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 90;
  }
  
  .nav-container.active {
    transform: translateY(0);
  }
  
  .main-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  
  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .header-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  
  .hero-block {
    padding: 60px 0 40px;
  }
  
  .hero-block h1 {
    font-size: 2.2rem;
  }
  
  .feature-grid, .reviews-grid, .subs-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .game-frame-container {
    height: 480px;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .hero-block h1 {
    font-size: 1.8rem;
  }
  
  .game-frame-container {
    height: 360px;
  }
}

@media (max-width: 450px) {
  .logo {
    font-size: 0.95rem;
  }
}

@media (max-width: 390px) {
  .logo {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
  
  .logo {
    font-size: 0.72rem;
  }
  
  .hero-block h1 {
    font-size: 1.5rem;
  }
  
  .age-gate-modal {
    padding: 30px 15px;
  }
  
  .auth-modal {
    padding: 20px;
  }
  
  .game-frame-container {
    height: 260px;
  }
}

/* App Store & Google Play Badges styling */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.store-badge-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 87, 34, 0.25);
}

.store-badge-link svg {
  display: block;
  height: 50px;
  width: auto;
  border-radius: 5px;
}

