/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #eee;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    background-color: #1c1c1c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    direction: ltr; /* مهم لعدم انعكاس العناصر */
}

body {
  font-family: 'Poppins', sans-serif;
}
.logo img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

body {
    padding-top: 80px; /* حتى ما يختفي جزء من أول قسم */
}

.nav-buttons .nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 4px;
  transition: color 0.3s;
}

.nav-buttons .nav-link:hover {
  color: #ff6600;
}

.navbar .logo img {
    height: 45px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1;
    margin: 0 20px;
}

.navbar .download-btn {
    margin-left: auto;
}

.nav-buttons .btn {
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.navbar .download-btn {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 17px;
}

.nav-buttons .btn:hover {
    background-color: #e65c00;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-content .btn {
    font-size: 18px;
}

.hero-video video {
    width: 80%;
    max-width: 700px;
    margin-top: 30px;
    border-radius: 10px;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6600;
}

.section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.dark-section {
    background-color: #181818;
}

/* Features (GIFs) - 2x2 Grid */
.features-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.gif-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Screenshots - Reduced size */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-grid img {
    width: 100%;
    border-radius: 10px;
    max-width: 450px;
}

.download-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #ff6600;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.download-btn:hover {
  background-color: #e65c00;
  transform: scale(1.05);
}

/* Gamebar */
.gamebar img {
  max-width: 500px;
  width: 25%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* Crosshair V2 */
.crosshair-v2 img {
  max-width: 400px;
  width: 20%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    background-color: #1c1c1c;
    margin-top: 40px;
}

.footer a {
    color: #eee;
    text-decoration: none;
}

.footer a:hover {
    color: #ff6600;
}

.about-title {
  font-size: 38px;
  margin-bottom: 20px;
  color: #ff6600;
}

.about-intro {
  max-width: 850px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  text-align: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-features .feature-box:nth-child(n+4) {
  grid-column: span 1;
}

.about-features .feature-box:nth-child(4),
.about-features .feature-box:nth-child(5),
.about-features .feature-box:nth-child(6) {
  grid-row: 2;
}

.feature-box {
  background-color: #1e1e1e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h3 {
  color: #ff6600;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-box p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* Download Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #1c1c1c;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #ff6600;
}

.modal-content h3 {
  color: #ff6600;
  font-size: 24px;
  margin-bottom: 20px;
}

.countdown {
  margin: 30px 0;
  font-size: 48px;
  font-weight: bold;
  color: #ff6600;
}

.countdown .seconds {
  font-size: 18px;
  color: #ccc;
  margin-left: 10px;
}

.modal-content p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 16px;
}

.cancel-btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.cancel-btn:hover {
  background-color: #555;
}

.nav-new-badge {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  border-radius: 8px;
  padding: 1px 6px;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -6px;
  letter-spacing: 0.5px;
}

.section-text {
  max-width: 650px;
  margin: 0 auto;
  color: #ccc;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.cta-download, .download-link {
  color: #ff6600;
  font-weight: bold;
  font-size: 19px;
  margin-top: 18px;
  display: inline-block;
  text-decoration: none;
}



