/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

/* Header Responsive Styles */
.game-header {
  background-size: cover;
  background-position: center;
  height: 280px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 6px #f39c12);
}

.title-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-name {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f8f8f8;
  text-shadow: 2px 2px 8px #000;
  font-family: 'Orbitron', sans-serif;
}

.game-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #f39c12;
  text-shadow: 1px 1px 5px black, 0 0 5px #f39c12;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

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

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #f39c12;
  transition: width 0.3s ease-in-out;
}

.main-nav a:hover {
  color: #f39c12;
}

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

.auth-buttons {
  display: flex;
  gap: 10px;
}

.login-btn,
.signup-btn {
  background-color: #f39c12;
  color: white;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.signup-btn {
  background-color: transparent;
  border: 2px solid #f39c12;
}

.login-btn:hover,
.signup-btn:hover {
  background-color: #d35400;
  border-color: #d35400;
}

/* Game Section Responsive Styles */
.game-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.game-gallery {
  max-width: 800px;
  flex: 1;
  min-width: 300px;
}

.main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}

.thumbnail-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 10px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.thumbnail-slider img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail-slider img:hover {
  transform: scale(1.1);
  border: 2px solid #f39c12;
}

.game-details {
  max-width: 400px;
  flex: 1;
  min-width: 300px;
}

.game-details h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.game-details .highlight {
  color: #535353;
}

.game-details ul {
  list-style: none;
  padding: 0;
  color: #000;
}

.game-details li {
  margin-bottom: 12px;
  font-size: 16px;
}

.game-details a {
  margin-right: 10px;
  color: #9d3737;
  text-decoration: none;
  font-size: 18px;
}

.game-details a:hover {
  color: #8b5a11;
}

.active-thumb {
  border: 2px solid #f39c12;
  transform: scale(1.05);
}

/* Download Section Responsive Styles */
.download-box {
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px 20px;
  margin: 50px auto;
  max-width: 800px;
  text-align: center;
  animation: slideIn 1.2s ease-in-out;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.download-box h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.download-box p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

.button-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn.dl {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
  transition: 0.3s;
}

.btn.dl.game {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.btn.dl:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.video-reminder {
  margin-top: 30px;
}

.video-reminder p {
  font-size: 1rem;
  color: #555;
}

.btn.watch {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background: #ff4b2b;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.watch:hover {
  background: #ff3a1a;
  transform: scale(1.05);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn.dl.fixed {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
}

/* Updated Installation Guide & Video Section Styles */
.guide-video-wrap {
  display: flex;
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
  align-items: flex-start;
}

.guide-box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #4facfe;
}

.video-box {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #ff4b2b;
  padding: 0;
}

/* Make both boxes equal width */
.guide-box, .video-box {
  width: 50%;
}

.guide-box h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step {
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.step-number {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.step h3 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: #34495e;
}

.step-details li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.video-container h3 {
  background: linear-gradient(to right, #2c3e50, #4a5a6b);
  color: white;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.2rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 45%; /* Reduced from 56.25% for smaller video */
  height: 0;
  margin: 15px;
}

.video-desc {
  padding: 0 20px 15px 20px;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .guide-video-wrap {
    flex-direction: column;
  }
  
  .guide-box, .video-box {
    width: 100%;
  }
  
  .video-wrapper {
    padding-bottom: 56.25%; /* Full height on mobile */
  }
}

@media (max-width: 576px) {
  .guide-box h2, .video-container h3 {
    font-size: 1.3rem;
  }
  
  .step {
    padding-left: 35px;
  }
  
  .step-number {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }
}

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

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

.video-desc {
  padding: 15px 20px;
  background: #f8fafc;
  color: #555;
  font-size: 0.95rem;
}

/* Requirements Section Responsive Styles */
.requirements-section {
  background: #fff;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.section-title span {
  color: #f39c12;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tabs .tab {
  padding: 10px 20px;
  border: none;
  background: #f1f1f1;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.tabs .tab.active {
  background: #f39c12;
  color: white;
}

.requirements-box {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}

.requirement {
  flex: 1;
  min-width: 280px;
}

.req-title {
  color: #e67e22;
  margin-bottom: 15px;
  font-size: 20px;
}

.requirement ul {
  list-style-type: none;
  padding-left: 0;
}

.requirement ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* Social Share Responsive Styles */
.social-share-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px auto;
  max-width: 1000px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.social-share-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  transition: 0.3s ease;
  font-size: 16px;
  flex: 1;
  min-width: 120px;
}

.social-share-bar i {
  margin-right: 8px;
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.googleplus { background: #dd4b39; }
.pinterest { background: #bd081c; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25D366; }
.email { background: #333; }

.social-share-bar a:hover {
  opacity: 0.8;
}

/* Support Section Responsive Styles */
.support-section {
  background: #f9f9fb;
  padding: 60px 20px;
  margin-top: 40px;
  text-align: center;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.03);
}

.support-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111;
}

.support-content p {
  font-size: 1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 30px;
}

.support-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.support-box {
  flex: 1 1 300px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.support-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.support-box h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.support-box p {
  color: #555;
}

.support-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #005eff;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 20px;
  }
  
  .game-section {
    padding: 0 20px;
  }
  
  .requirements-section {
    margin: 60px 20px;
    max-width: calc(100% - 40px);
  }
  
  .social-share-bar {
    margin: 30px 20px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .logo-section {
    margin-bottom: 15px;
  }
  
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
    gap: 10px;
  }
  
  .auth-buttons {
    margin-top: 15px;
  }
  
  .site-name {
    font-size: 28px;
  }
  
  .game-subtitle {
    font-size: 14px;
  }
  
  .guide-video-wrap {
    flex-direction: column;
  }
  
  .video-box {
    flex: 1;
    width: 100%;
  }
  
  .requirements-box {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .game-header {
    height: auto;
    padding: 20px 0;
  }
  
  .main-image img {
    height: 350px;
  }
  
  .download-box {
    padding: 30px 15px;
    margin: 30px 15px;
  }
  
  .button-wrap {
    flex-direction: column;
  }
  
  .btn.dl {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .support-options {
    flex-direction: column;
  }
  
  .support-box {
    width: 100%;
  }
  
  .social-share-bar {
    flex-direction: column;
  }
  
  .social-share-bar a {
    width: 100%;
    margin: 5px 0;
  }
}

@media (max-width: 576px) {
  .site-logo {
    width: 70px;
  }
  
  .main-image img {
    height: 250px;
  }
  
  .thumbnail-slider img {
    width: 80px;
    height: 50px;
  }
  
  .game-details {
    padding: 0 15px;
  }
  
  .step {
    padding-left: 40px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .step h3 {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .req-title {
    font-size: 18px;
  }
  
  .support-content h2 {
    font-size: 1.8rem;
  }
  
  .auth-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .login-btn, 
  .signup-btn {
    width: 100%;
    margin: 5px 0;
  }
}