:root {
  --primary: #a855f7; /* Majestic Purple */
  --primary-glow: rgba(168, 85, 247, 0.4);
  --secondary: #2ecc71; /* Vibrant Forest Green */
  --secondary-glow: rgba(46, 204, 113, 0.25);
  --bg-dark: #090512; /* Deep Dark Velvet Purple */
  --bg-card: #140d24; /* Dark Purple Slate */
  --bg-card-hover: #1e1336;
  --text-light: #f5f0eb;
  --text-muted: #a39cb0;
  --accent: #2ecc71;
  --border-color: #24143d;
  --container-width: 1300px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Base Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.glowing-text {
  color: var(--text-light);
  text-shadow: 0 0 15px var(--primary-glow);
}

.highlight {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

/* DISCLAIMER BAR */
.disclaimer-bar {
  background-color: #000;
  border-bottom: 1px solid var(--border-color);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 15px;
  text-align: center;
  position: relative;
  z-index: 1001;
}

/* HEADER STYLE */
header {
  background: rgba(9, 5, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.logo span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-smooth);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

/* Hamburguer Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

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

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(20, 13, 36, 0.4) 0%, rgba(9, 5, 18, 1) 100%),
              url('images/photo-1533105079780-92b9be482077.png') center/cover no-repeat;
  border-bottom: 2px solid var(--border-color);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* GAME PORTAL SECTION */
.game-portal-wrapper {
  background: linear-gradient(180deg, #130b21 0%, #06030a 100%);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.game-portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.game-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary);
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

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

/* SECTION HEADER */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* UNIQUE CARDS & GRIDS */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

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

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.experience-card:hover .card-image {
  transform: scale(1.08);
}

.card-content {
  padding: 30px;
}

.card-tag {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-block;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

/* BRAND VALUES SECTION */
.value-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: rgba(19, 11, 33, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.value-highlight:hover {
  border-color: var(--primary);
  background: var(--bg-card);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--primary-glow);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* VISUAL SHOWCASE */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.showcase-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--border-color);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 5, 18, 0.9) 0%, rgba(9, 5, 18, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.showcase-item:hover img {
  transform: scale(1.05);
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

/* STATISTICS SECTION */
.stats-bar {
  background: linear-gradient(135deg, #140b24 0%, #06030a 100%);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* FAQ STYLING */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--primary-glow);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}

/* BLOG DESIGN */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: bold;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 15px;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-read-more:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* DETAILED ARTICLE EXPANDER / MODAL */
.article-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 3, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.article-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--primary-glow);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.article-modal.active .modal-content {
  transform: scale(1);
}

.modal-header-image {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-bottom: 2px solid var(--border-color);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.modal-body {
  padding: 40px;
}

.modal-category {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.modal-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.modal-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.modal-text p {
  margin-bottom: 20px;
}

.modal-text h4 {
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-left: 3px solid var(--secondary);
  padding-left: 15px;
}

/* NEWSLETTER */
.newsletter-wrapper {
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.1) 0%, rgba(9, 5, 18, 1) 70%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 60px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 30px auto 0 auto;
  gap: 12px;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 14px 20px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* CONTACT CTA SECTION */
.cta-banner {
  background: linear-gradient(to right, #140b24, #06030a);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
  text-align: center;
}

.cta-banner-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-banner-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

/* CONTACT PAGE STYLING */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
}

.contact-info-block {
  margin-bottom: 30px;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

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

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

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: rgba(19, 11, 33, 0.98);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  z-index: 1000;
  display: none;
}

.cookie-content {
  margin-bottom: 16px;
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* LEGAL PAGES */
.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-content p, .legal-content ul {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 20px;
}

/* FOOTER */
footer {
  background: #05030a;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.footer-info-line {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-warning {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 800px;
  text-align: center;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-menu {
    position: fixed;
    top: 110px; /* Below Top bar + Slim header */
    left: -100%;
    width: 100%;
    height: calc(100vh - 110px);
    background: #090512;
    flex-direction: column;
    padding: 40px 24px;
    transition: var(--transition-smooth);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .header-container .nav-cta {
    display: none; /* Keep header slim, show in burger menu if desired or simple inline header style */
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}