/*
 Theme Name: Crypto Casinos
 Template: generatepress
*/

/* ─── Crypto Nav ─── */
.crypto-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #ececf1;
}
.crypto-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
}
.crypto-nav-brand {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: #0f0f1a;
  text-decoration: none;
}
.crypto-nav-brand:hover { color: #0f0f1a; }
.crypto-nav-brand span { color: #f59e0b; }
.crypto-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.crypto-nav-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3a3a52;
  text-decoration: none;
  transition: color 0.2s;
}
.crypto-nav-links li a:hover { color: #f59e0b; }
.crypto-nav-cta {
  background: #0f0f1a !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 100px;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.crypto-nav-cta:hover {
  background: #f59e0b !important;
  transform: translateY(-1px);
}

/* ─── Hamburger ─── */
.crypto-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.crypto-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f0f1a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.crypto-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.crypto-hamburger.active span:nth-child(2) { opacity: 0; }
.crypto-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile ─── */
@media (max-width: 900px) {
  .crypto-hamburger { display: flex; }
  .crypto-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #ececf1;
    box-shadow: 0 8px 40px rgba(15,15,26,0.1);
  }
  .crypto-nav-links.open { display: flex; }
}