:root {
--primary: #6a1b9a;
--secondary: #ffd700;
--dark: #121212;
--light: #f5f5f5;
--accent: #e53935;
}
/* ===== NEON PURPLE THEME ===== */
:root {
  /* Base Neon Colors */
  --neon-purple: #c724ff;
  --neon-pink: #ff2dff;
  --deep-purple: #6a1b9a;
  --black-light: #0a0a1a;
  
  /* Glow Effects */
  --glow-sm: 0 0 5px var(--neon-purple);
  --glow-md: 0 0 15px rgba(199, 36, 255, 0.7);
  --glow-lg: 0 0 25px rgba(199, 36, 255, 0.4);
  --text-glow: 0 0 3px #fff, 0 0 5px var(--neon-pink);
}

/* 1. Background & Base Elements */
body {
  background: var(--black-light) url('assets/images/neon-grid-bg.jpg') no-repeat center/cover;
  color: #f0e6ff;
}

header {
  background: linear-gradient(135deg, var(--deep-purple), #3d0b5a) !important;
  box-shadow: var(--glow-sm), var(--glow-md) !important;
  border-bottom: 1px solid var(--neon-purple) !important;
}

header {
  width: 100% !important;       /* Force full width */
  overflow: hidden !important;  /* Hide anything escaping */
  position: relative;           /* For absolute-positioned menu buttons */
  display: flex;
  flex-wrap: nowrap; /* Prevent items from breaking lines */
  justify-content: space-between; /* Push button to right */
}



/* 👇 Portrait-mode emergency fixes */
@media (max-width: 768px) and (orientation: portrait) {
  body {
    font-size: 14px !important; /* Force text resize */
  }
  .container {
    width: 95% !important; /* Crush margins */
    padding: 5px !important;
  }
  img, video {
    max-width: 100% !important; /* Nuke overflowing media */
  }
}

/* 2. Interactive Elements */
.btn, .play-btn {
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink)) !important;
  color: white !important;
  text-shadow: var(--text-glow);
  box-shadow: var(--glow-sm), var(--glow-md);
  border: none !important;
  transition: all 0.3s ease;
}

img, video {
  max-width: 100%; /* Prevents overflow */
  height: auto;
}

.btn:hover {
  box-shadow: var(--glow-sm), var(--glow-md), var(--glow-lg);
  transform: translateY(-2px);
}

body {
  min-width: 375px; /* Prevents extreme squishing */
  overflow-x: hidden; /* Hides horizontal scroll */
}

/* Portrait-specific fixes */
@media (max-width: 768px) and (orientation: portrait) {
  h1 { font-size: 1.8rem; }
  .container { padding: 5px; }
}

/* For screens smaller than 768px (typical mobile) */
@media (max-width: 768px) {
  h1 {
    font-size: 2em; /* Smaller heading */
  }
  .container {
    padding: 10px; /* Less padding */
  }
}

/* 3. Game Cards & Sections */
.game-card {
  background: rgba(20, 5, 35, 0.8) !important;
  border: 1px solid var(--neon-purple) !important;
  box-shadow: var(--glow-sm) !important;
}

.game-card:hover {
  box-shadow: var(--glow-md) !important;
  border-color: var(--neon-pink) !important;
}

.section-title {
  color: var(--neon-pink) !important;
  text-shadow: var(--text-glow);
}

.section-title::after {
  background: var(--neon-purple) !important;
  box-shadow: var(--glow-sm);
}

/* 4. Form Elements */
input, textarea {
  background: rgba(10, 5, 20, 0.7) !important;
  border: 1px solid var(--neon-purple) !important;
  box-shadow: inset var(--glow-sm) !important;
  color: white !important;
}

/* 5. Pulsing Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.logo {
  animation: pulse 3s infinite;
  text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-pink), 0 0 15px var(--neon-purple);
}

/* 6. Neon Borders (Optional) */
.neon-border {
  position: relative;
}

.neon-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--neon-purple);
  border-radius: inherit;
  box-shadow: var(--glow-sm), var(--glow-md);
  pointer-events: none;
  z-index: -1;
}
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
background-color: var(--dark);
color: var(--light);
background-image: radial-gradient(circle at 10% 20%, rgba(106, 27, 154, 0.1) 0%, rgba(0, 0, 0, 0.9) 90%);
}

header {
background: linear-gradient(to right, var(--dark), var(--primary));
padding: 1rem 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
position: sticky;
top: 0;
z-index: 100;
}

.logo {
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary);
text-transform: uppercase;
letter-spacing: 3px;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.whatsapp-button {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25D366;
color: white;
padding: 15px;
border-radius: 50px;
text-decoration: none;
font-family: Arial, sans-serif;
font-size: 16px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
z-index: 1000;
}
.whatsapp-button:hover {
background-color: #1DA851;
}
.whatsapp-button i {
margin-right: 8px;
}

.container {
  width: 90%; /* Instead of fixed width (e.g., 800px) */
  margin: 0 auto; /* Centers the container */
}

nav ul {
display: flex;
justify-content: center;
list-style: none;
padding: 0;
margin: 1rem 0;
}

nav li {
margin: 0 1.5rem;
}

nav a {
color: var(--light);
text-decoration: none;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: all 0.3s ease;
}

nav a:hover {
background-color: rgba(255, 215, 0, 0.2);
color: var(--secondary);
}

.hero {
height: 80vh;
background: url('../images/hero-bg.jpg') no-repeat center center;
background-size: cover;
display: flex;
align-items: center;
position: relative;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(106, 27, 154, 0.5));
}

.hero-content {
position: relative;
z-index: 1;
max-width: 600px;
}

.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
color: var(--secondary);
}

.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
line-height: 1.6;
}

.btn {
display: inline-block;
padding: 0.8rem 2rem;
background-color: var(--accent);
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn:hover {
background-color: #c62828;
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.section-title {
text-align: center;
margin-bottom: 3rem;
font-size: 2.5rem;
color: var(--secondary);
position: relative;
padding-top: 2rem;
}

.section-title::after {
content: '';
display: block;
width: 100px;
height: 4px;
background-color: var(--accent);
margin: 1rem auto;
}

.games-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 2rem;
}

.game-card {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.game-img {
height: 200px;
background-size: cover;
background-position: center;
}

.game-info {
padding: 1.5rem;
}

.game-title {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--secondary);
}

.game-desc {
margin-bottom: 1rem;
color: rgba(255, 255, 255, 0.7);
}

.play-btn {
display: inline-block;
padding: 0.5rem 1rem;
background-color: var(--primary);
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 500;
transition: all 0.3s ease;
}

.play-btn:hover {
background-color: #8e24aa;
}

/* Testimonials Section */
.testimonials {
padding: 4rem 0;
background-color: rgba(0, 0, 0, 0.3);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}

.testimonial-card {
background-color: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 8px;
position: relative;
}

.testimonial-card::before {
content: '"';
font-size: 5rem;
position: absolute;
top: -1rem;
left: 0.5rem;
color: rgba(255, 215, 0, 0.2);
font-family: serif;
}

.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
position: relative;
z-index: 1;
}

.testimonial-author {
display: flex;
align-items: center;
}

.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 1rem;
object-fit: cover;
}

.author-info h4 {
margin: 0;
color: var(--secondary);
}

.author-info p {
margin: 0.2rem 0 0;
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.6);
}

/* Promotions Page Styles */
.promotion-card {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 8px;
overflow: hidden;
margin-bottom: 2rem;
display: flex;
flex-direction: column;
}

@media (min-width: 768px) {
.promotion-card {
flex-direction: row;
}
}

.promotion-img {
min-height: 200px;
background-size: cover;
background-position: center;
flex: 1;
}

@media (min-width: 768px) {
.promotion-img {
min-height: auto;
width: 40%;
}
}

.promotion-content {
padding: 2rem;
flex: 2;
}

.promotion-title {
font-size: 1.8rem;
color: var(--secondary);
margin-top: 0;
}

.promotion-date {
color: var(--accent);
font-weight: 500;
margin: 0.5rem 0;
}

/* About Page Styles */
.about-content {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}

@media (min-width: 992px) {
.about-content {
grid-template-columns: 1fr 1fr;
}
}

.about-text {
line-height: 1.8;
}

.about-image {
border-radius: 8px;
overflow: hidden;
height: 400px;
background-size: cover;
background-position: center;
}

.features-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 1.5rem;
margin: 3rem 0;
}

.feature-item {
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
border-radius: 8px;
text-align: center;
}

.feature-icon {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}

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

.contact-info {
background-color: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 8px;
}

.contact-method {
display: flex;
align-items: center;
margin-bottom: 1.5rem;
}

.contact-icon {
font-size: 1.5rem;
color: var(--secondary);
margin-right: 1rem;
width: 40px;
text-align: center;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 0.8rem;
margin-bottom: 1rem;
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
color: white;
}

.contact-form textarea {
min-height: 150px;
}

.contact-form button {
background-color: var(--primary);
color: white;
border: none;
padding: 0.8rem 2rem;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
}

.contact-form button:hover {
background-color: #8e24aa;
}

footer {
background-color: var(--dark);
padding: 3rem 0;
text-align: center;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
font-size: 2rem;
font-weight: 700;
color: var(--secondary);
margin-bottom: 1.5rem;
display: inline-block;
}

.social-links {
margin: 1.5rem 0;
}

.social-links a {
color: var(--light);
margin: 0 1rem;
font-size: 1.5rem;
transition: all 0.3s ease;
}

.social-links a:hover {
color: var(--secondary);
}

.copyright {
color: rgba(255, 255, 255, 0.5);
font-size: 0.9rem;
}
