:root {
  --bg-dark: #371d10;
  --bg-darker: #1a0a03;
  --accent: #fdf2d7;
  --accent-hover: #e3a94b;
  --text: #ebb98b;
  --text-light: #a0a0cc;
  --border: #ebb98b52;
  --buttons-bg: linear-gradient(to bottom, #f6d27a 0%, #e3a94b 45%, #c98a2e 100%);
  --buttons-hover: linear-gradient(to bottom, #ffe29a 0%, #f0b85a 50%, #d99a3a 100%);
  --button-box-shadows: inset 0 2px 0 rgba(255, 255, 255, 0.6), inset 0 -2px 0 rgba(0, 0, 0, 0.3), 0 3px 0 #4a2a0a, 0 5px 10px rgba(0, 0, 0, 0.4);
}
body {
  font-family: "Jost", "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  background-color: var(--bg-darker);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.container {
  background-color: var(--bg-dark);
  max-width: 80%;
  margin: 0 auto;
  padding: 0 0 20px;
}
header {
  background: #080812;
  padding: 12px 5% 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #222244;
  position: sticky;
  top: 0;
  z-index: 100;
}
.rob-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}
.rob-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.rob-logo-link:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 4px;
}
.section p a:not(.rob-get),
.section li a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section p a:not(.rob-get):visited,
.section li a:visited {
  color: var(--accent);
}
.section p a:not(.rob-get):hover,
.section li a:hover {
  color: var(--accent);
}
h1 {
  font-family: "Jost", "Arial Black", sans-serif;
  margin: 0;
  font-size: 2.5em;
  color: var(--accent);
}
.rob-auth-buttons button {
  padding: 10px 20px;
  margin-left: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}
#signup,
#login {
  background: var(--buttons-bg);
  color: var(--bg-darker);
  border: 3px solid #6b3f14;
  border-radius: 6px;

  box-shadow: var(--button-box-shadows);

  cursor: pointer;
  text-transform: uppercase;
}
#signup:hover,
#login:hover {
  background: var(--buttons-hover);
}

main {
  padding-top: 40px;
  padding-bottom: 80px;
}
.rob-bonus-box {
  display: block;
  margin-bottom: 60px;
}
.rob-bonus-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.rob-bonus-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.rob-bonus-spins {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #f7d8a0;
  -webkit-text-stroke: 1.5px #4b2e12;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.rob-get-bonus {
  display: inline-block;
  text-transform: uppercase;
  background: var(--buttons-bg);
  color: var(--bg-darker);
  padding: 18px 60px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px #ffe29a62;
  transition: all 0.3s;
}
.rob-get-box {
  text-align: center;
  margin: 4rem 0;
}
.rob-get-box .rob-get {
  display: inline-block;
  background: var(--buttons-bg);
  color: var(--bg-darker);
  padding: 18px 60px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px #ffe29a62;
  transition: all 0.3s;
}

.table-wrapper {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid var(--border);
  min-width: 600px;
}
table,
th,
td {
  border: 1px solid var(--border);
}
th,
td {
  padding: 10px;
  text-align: left;
}
th {
  background-color: var(--bg-darker);
  color: var(--accent);
}
.section {
  margin-bottom: 40px;
  padding: 0 20px 0;
}
.section h2,
.rob-payments h2 {
  font-family: "Jost", "Arial Black", sans-serif;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
  word-break: break-word;
}
.rob-faq h3 {
  font-family: "Jost", "Arial Black", sans-serif;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 1.75rem 0 0.65rem;
  padding: 14px 18px 14px 20px;
  background: linear-gradient(90deg, rgba(253, 242, 215, 0.12) 0%, var(--bg-darker) 55%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-hover);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.rob-faq h3:first-of-type {
  margin-top: 1rem;
}
.rob-faq h3 + p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 4px;
}
.rob-faq h3 + p:last-child {
  margin-bottom: 0;
}
.rob-payments {
  text-align: left;
  margin: 80px 0 60px;
}

.rob-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
footer {
  background-color: #080812;
  color: var(--text);
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.rob-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}
.rob-gallery {
  --gap: 12px;
  --min-size: 180px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--min-size), 1fr));
  gap: var(--gap);
  padding: var(--gap);
}
.rob-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a2e;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.rob-gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px #ffe29a62;
}
.rob-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.rob-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.rob-gallery-item:hover img {
  transform: scale(1.08);
}
img.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img.lazy.loaded {
  opacity: 1;
}
@media (max-width: 900px) {
  .rob-gallery {
    --min-size: 160px;
    --gap: 10px;
  }
}
@media (max-width: 600px) {
  .rob-gallery {
    --min-size: 140px;
    --gap: 8px;
  }
}
@media (max-width: 400px) {
  .rob-gallery {
    --min-size: 120px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  h1 {
    font-size: 2.5rem;
    word-break: break-all;
  }
  header h1 {
    font-size: 2em;
  }
  .icon-wrapper {
    width: 65px;
    height: 65px;
  }
  .icon-wrapper img {
    max-width: 60%;
    max-height: 60%;
  }
  .rob-faq h3 {
    font-size: 1.2rem;
    padding: 12px 14px;
  }
}

@media (max-width: 520px) {
  .bonus-label {
    display: none;
  }
  .rob-get-bonus {
    padding: 15px;
    align-self: center;
  }
  .rob-header-top {
    flex-direction: column;
    gap: 10px;
  }
  .rob-auth-buttons {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .rob-nav {
    justify-content: center;
  }
}
.rob-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-top: 1px solid #222244;
  padding: 8px 0;
}
.rob-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 18px;
  transition: color 0.2s, background 0.2s;
}
.rob-nav a:hover,
.rob-nav a.active {
  color: var(--accent);
  background: rgba(253, 242, 215, 0.08);
}
.rob-faq details {
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-hover);
  border-radius: 6px;
  margin: 1.25rem 0 0.5rem;
  background: linear-gradient(90deg, rgba(253, 242, 215, 0.12) 0%, var(--bg-darker) 55%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.rob-faq details summary {
  font-family: "Jost", "Arial Black", sans-serif;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 18px 14px 20px;
  cursor: pointer;
  list-style: none;
}
.rob-faq details summary::-webkit-details-marker {
  display: none;
}
.rob-faq details p {
  padding: 0 18px 14px 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .rob-nav {
    gap: 2px;
  }
  .rob-nav a {
    font-size: 15px;
    padding: 5px 10px;
  }
}
