:root {
  --maxw: 1200px;
  --accent: #d4af37;
  --muted: #999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0f0b07;
  color: #eaeaea;
  line-height: 1.6;
}

/* NAVBAR */
header {
  background: #1b1208;
  border-bottom: 1px solid #3a2a14;
}

.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: #c7b299;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #d4af37;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #d4af37;
  margin: 4px 0;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
}

/* HERO */
.shadow-box {
  background: #1e160d;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}
.shadow-box h1 {
  color: #d4af37;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.headptag {
  color: #d4af37;
  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: 160px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 16px 0;
}

.download-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #d4af37, #f1c40f);
  color: #1b1208;
  font-weight: bold;
  border-radius: 6px;
  text-transform: uppercase;
}

/* 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: #1b1208;
}
a {
  color: #d4af37;
  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: #d4af37;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 25px;
  padding: 25px;
}

.disred {
  color: red;
  margin-bottom: 16px;
}
h1,
h2,
h3 {
  color: #d4af37;
  font-family: Georgia, "Times New Roman", Times, serif;
}
p {
  color: #eaeaea;
  margin-bottom: 14px;
  font-size: 15px;
}
