/* Modern Tech Startup Theme - ALL_PANEL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #e0e0e0;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
}

/* Modern Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 35, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(138, 43, 226, 0.3);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #8a2be2;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo:hover::after {
  transform: scaleX(1);
}

.crown-icon {
  font-size: 2rem;
  animation: techGlow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.8));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  left: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: #8a2be2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
  text-shadow: 0 0 5px rgba(138, 43, 226, 0.5);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #8a2be2;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(138, 43, 226, 0.5);
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.royal-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-crown,
.floating-diamond,
.floating-gold,
.floating-trophy {
  position: absolute;
  font-size: 2rem;
  animation: techFloat 6s ease-in-out infinite;
  opacity: 0.4;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.floating-crown { top: 20%; left: 10%; animation-delay: 0s; }
.floating-diamond { top: 60%; right: 15%; animation-delay: 2s; }
.floating-gold { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-trophy { top: 40%; right: 30%; animation-delay: 1s; }

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  position: relative;
}

.royal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #8a2be2;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #8a2be2, #ff69b4, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.golden-text {
  background: linear-gradient(135deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.royal-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(138, 43, 226, 0.2);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #8a2be2;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
}

.royal-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-royal,
.btn-noble {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-royal {
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  color: white;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-noble {
  background: rgba(138, 43, 226, 0.1);
  color: #8a2be2;
  border: 2px solid rgba(138, 43, 226, 0.3);
  backdrop-filter: blur(10px);
}

.btn-royal:hover,
.btn-noble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

.royal-trust {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.trust-icon {
  color: #8a2be2;
  font-size: 1.2rem;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.hero-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 105, 180, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-container:hover .image-overlay {
  opacity: 1;
}

/* Games Section */
.games-section {
  padding: 5rem 2rem;
  background: rgba(15, 15, 35, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
  transition: left 0.5s ease;
}

.game-card:hover::before {
  left: 100%;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
  border-color: rgba(138, 43, 226, 0.5);
}

.game-card.featured {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 105, 180, 0.2));
  border-color: rgba(138, 43, 226, 0.5);
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #8a2be2;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.game-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.game-card p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

.game-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  background: rgba(26, 26, 46, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
  border-color: rgba(138, 43, 226, 0.5);
}

.feature-card.featured {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 105, 180, 0.2));
  border-color: rgba(138, 43, 226, 0.5);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #8a2be2;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.feature-card p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

.feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 2rem;
  background: rgba(15, 15, 35, 0.5);
}

.rating-summary {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(138, 43, 226, 0.2);
  backdrop-filter: blur(10px);
}

.rating-stars {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.rating-text {
  font-size: 1.2rem;
  color: #e0e0e0;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
  border-color: rgba(138, 43, 226, 0.5);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 105, 180, 0.2));
  border-color: rgba(138, 43, 226, 0.5);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.user-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 0.25rem;
}

.user-rating {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-card p {
  color: #b0b0b0;
  line-height: 1.6;
  font-style: italic;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 2rem;
  background: rgba(26, 26, 46, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(255, 105, 180, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  text-align: center;
  padding: 1rem;
}

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

.gallery-overlay h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 105, 180, 0.2));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-royal.large,
.btn-noble.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Footer */
.royal-footer {
  background: rgba(15, 15, 35, 0.95);
  border-top: 1px solid rgba(138, 43, 226, 0.3);
  padding: 3rem 2rem 1rem;
  backdrop-filter: blur(20px);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8a2be2;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-about p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 50%;
  color: #8a2be2;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
}

.footer-links h4,
.contact-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

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

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #8a2be2;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #b0b0b0;
}

.contact-icon {
  color: #8a2be2;
}

.footer-bottom {
  border-top: 1px solid rgba(138, 43, 226, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Animations */
@keyframes techGlow {
  0% { filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.8)); }
  100% { filter: drop-shadow(0 0 20px rgba(138, 43, 226, 1)); }
}

@keyframes techFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes techPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* --- UI Enhancements for ALL_PANEL --- */

/* Navbar separation and shadow */
.navbar {
  box-shadow: 0 6px 24px rgba(138,43,226,0.10), 0 1.5px 0 #8a2be2;
  border-bottom: 2px solid #8a2be2;
}

/* Section separation */
.section {
  margin-bottom: 3rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 24px rgba(138,43,226,0.04);
  background: rgba(20, 20, 40, 0.85);
  padding: 3rem 2rem;
}

.section:not(:first-child) {
  margin-top: 2rem;
}

/* Hero section pop */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 60%, #8a2be2 100%);
  color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px rgba(138,43,226,0.10);
  margin-top: 2.5rem;
}

.hero-content h1, .hero-content .hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn, .btn-primary, .btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  color: #fff;
  box-shadow: 0 2px 10px rgba(138,43,226,0.09);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(138,43,226,0.10);
}

.btn-secondary {
  background: linear-gradient(90deg, #ff69b4, #8a2be2);
}

.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(138,43,226,0.18);
}

/* Card and grid enhancements */
.service-card, .stat-item, .process-step, .testimonial-card {
  background: rgba(30, 30, 50, 0.95);
  border-radius: 1.1rem;
  box-shadow: 0 4px 24px rgba(138,43,226,0.08);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.18s, box-shadow 0.18s;
}

.service-card:hover, .stat-item:hover, .process-step:hover, .testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(138,43,226,0.18);
}

/* Section headers */
.section h2, .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #ff69b4;
  margin-bottom: 2.2rem;
  font-weight: 500;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .section {
    padding: 2rem 0.7rem;
  }
  .hero-section {
    padding: 2.5rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 1.2rem 0.2rem;
    margin-bottom: 1.2rem;
  }
  .hero-section {
    padding: 1.5rem 0.2rem;
    margin-top: 1.2rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .royal-stats {
    justify-content: center;
  }
  
  .royal-actions {
    justify-content: center;
  }
  
  .royal-trust {
    justify-content: center;
  }
  
  .games-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .games-section,
  .features-section,
  .testimonials-section,
  .gallery-section,
  .cta-section {
    padding: 3rem 1rem;
  }
}

/* --- Section Grid and Card Fixes for ALL_PANEL --- */

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(30, 30, 50, 0.97);
  border-radius: 1.1rem;
  box-shadow: 0 4px 24px rgba(138,43,226,0.08);
  padding: 2rem 1.5rem;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(138,43,226,0.18);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.service-features {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #b0b0b0;
  font-size: 0.98rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  background: rgba(30, 30, 50, 0.97);
  border-radius: 1.1rem;
  box-shadow: 0 4px 24px rgba(138,43,226,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(138,43,226,0.18);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff69b4;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b0b0b0;
  font-size: 1.05rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  background: rgba(30, 30, 50, 0.97);
  border-radius: 1.1rem;
  box-shadow: 0 4px 24px rgba(138,43,226,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.process-step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(138,43,226,0.18);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8a2be2;
  margin-bottom: 0.7rem;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(30, 30, 50, 0.97);
  border-radius: 1.1rem;
  box-shadow: 0 4px 24px rgba(138,43,226,0.08);
  padding: 2rem 1.5rem;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(138,43,226,0.18);
}

.testimonial-text {
  font-size: 1.08rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8a2be2, #ff69b4);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.client-details h4 {
  margin: 0;
  font-size: 1.08rem;
  color: #ff69b4;
}

.client-details p {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.98rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #8a2be2 60%, #ff69b4 100%);
  color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 40px rgba(138,43,226,0.10);
  margin-top: 2.5rem;
  text-align: center;
  padding: 3rem 2rem;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .services-grid, .stats-grid, .process-steps, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* --- Footer Styling for ALL_PANEL --- */
footer {
  background: linear-gradient(135deg, #1a1a2e 60%, #8a2be2 100%);
  color: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  margin-top: 3rem;
  box-shadow: 0 -4px 24px rgba(138,43,226,0.10);
  padding: 3rem 0 1.5rem 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: #ff69b4;
  font-weight: 700;
}

.footer-section a {
  color: #e0e0e0;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 1.2rem;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #ff69b4;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.2rem;
  text-align: center;
  color: #b0b0b0;
  font-size: 0.98rem;
  margin-top: 1.2rem;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .footer-section {
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 2rem 0 1rem 0;
    border-radius: 0 0 1rem 1rem;
  }
  .footer-content {
    padding: 0 0.5rem;
  }
}