:root {
  --maxw: 1200px;
  --accent: #cfae70;
  --muted: #8a8a8a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: black;
  color: #eaeaea;
  line-height: 1.6;
}

/* NAVBAR */
header {
  background: #4b0f14;
  border-bottom: 1px solid #f5f5f5;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.logo img {
  width: 49px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-menu a {
  color: #cfcfcf;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #fff6f6;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #121212;
  margin: 4px 0;
  text-align: center;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
}

/* HERO */
.shadow-box {
  background: #4b0f14;
  padding: 10px 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(245, 210, 96, 0.2);
  margin-bottom: 30px;
}
.shadow-box h1 {
  color: #f8f8f8;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.headptag {
  color: #cfcfcf;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
  font-size: 16px;
  padding: 10px;
}

/* DOWNLOAD SECTION */
.title-section {
  text-align: center;
  margin-bottom: 30px;
}

.app-logo {
  width: 220px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 16px 0;
}

.download-btn {
  padding: 15px 40px;
  font-size: 20px;
  border: none;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(145deg, #ff0000, #aa0000);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.6);
  transform-style: preserve-3d;
  transition: 0.3s;
}

.download-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 60px rgba(255, 0, 0, 0.9);
}

/* TABLE */
.casino-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.casino-table th,
.casino-table td {
  border: 1px solid #3a2a14;
  padding: 10px;
  text-align: center;
}

.casino-table th {
  background: #4b0f14;
}
a {
  color: #b11226;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* CONTENT */
article h2 {
  margin: 20px 0 10px;
}

footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #3a2a14;
  margin-top: 40px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: #1b1208;
    width: 100%;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 16px 0;
  }

  .nav-menu.active {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .hamburger {
    display: flex;
  }

  .slide {
    flex: 0 0 100%;
  }
}
.thred {
  color: red;
  text-align: center;
}

/*slider*/
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0; /* ❌ remove vertical space */
  margin-bottom: 20px;
}

.slider-track {
  display: flex;
  gap: 0; /* ❌ remove gap between images */
  transition: transform 0.5s ease;
  cursor: grab;
  will-change: transform;
}

.slide {
  flex: 0 0 33.333%; /* ❌ no calc, no minus */
  border-radius: 0; /* ❌ square corners */
  overflow: hidden;
  background: #000;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* ❌ square image corners */
}

/* Responsive */

@media (max-width: 900px) {
  .slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%;
  }
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  padding: 12px 16px;
  border-radius: 0; /* ❌ square arrows (optional) */
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
}

#prev {
  left: 10px;
}

#next {
  right: 10px;
}
.wrap {
  max-width: var(--maxw);
  margin: 36px auto;
  padding: 24px;
}
main {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 30px black;
}
.site-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.6px;
}
.date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.screenshort {
  color: #f8f8f8;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 25px;
  padding: 25px;
}

.disred {
  color: red;
  margin-bottom: 16px;
}
h1,
h2,
h3 {
  color: #f8f8f8;
  font-family: Georgia, "Times New Roman", Times, serif;
}
p {
  color: #cfcfcf;
  margin-bottom: 14px;
  font-size: 15px;
}
