* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f5f7fb;
  background: linear-gradient(180deg, #08090d 0%, #12070b 42%, #07090d 100%);
  line-height: 1.6;
}
a {
  color: inherit;
}
.header {
  background: linear-gradient(135deg, #190509 0%, #670b19 48%, #111015 100%);
  color: #ffffff;
  padding: 14px 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
  border-bottom: 1px solid rgba(255, 48, 71, 0.55);
}
.container {
  max-width: 1180px;
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo {
  width: 158px;
  min-height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd42e 0%, #ffbd16 58%, #ef1b34 100%);
  position: relative;
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, 0.12),
    0 8px 18px rgba(255, 38, 61, 0.24);
  overflow: hidden;
}
.logo::before {
  content: "PIN UP";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16070a;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}
.menu-state {
  display: none;
}
.menu-toggle {
  display: none;
}
.nav-list {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-list a,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}
.nav-list a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-action {
  background: #ef1b34;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 7px 16px rgba(239, 27, 52, 0.24);
}
.header-action.secondary {
  background: #ffffff;
  color: #9c0718;
  box-shadow: none;
}
.date-strip {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 12px 18px;
  border-radius: 18px;
  background: #171b26;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dbe2ee;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}
.page-links {
  max-width: 1180px;
  margin: 14px auto;
  padding: 12px;
  background: #171b26;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.contents-title {
  margin: 0 0 10px;
  color: #ffd42e;
  font-size: 15px;
  font-weight: 900;
}
.page-links ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  background: #201219;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}
.link-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(239, 27, 52, 0.18);
  font-size: 15px;
}
.section {
  max-width: 1180px;
  margin: 22px auto;
  padding: 28px;
  background: #121620;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
#hero {
  background: linear-gradient(135deg, #ef1b34 0%, #841021 48%, #151016 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 46px 28px;
}
#hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -82px;
  top: -96px;
  border-radius: 50%;
  background: rgba(255, 212, 46, 0.2);
}
#hero::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: -92px;
  bottom: -96px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}
h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.24;
}
h1 {
  font-size: 44px;
  letter-spacing: -0.4px;
}
h2 {
  font-size: 30px;
  color: #ff4158;
}
h3 {
  font-size: 22px;
  color: #ffd42e;
}
#hero h1,
#hero h2 {
  color: #ffffff;
}
p {
  margin: 0 0 14px;
}
.hero-badges,
.quick-panel-grid,
.rating-grid,
.steps-grid,
.bonus-grid,
.card-grid {
  display: grid;
  gap: 16px;
}
.hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}
.badge,
.rating-card,
.step-card,
.card,
.bonus-card {
  background: #171b26;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
}
#hero .badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}
.badge {
  position: relative;
  overflow: hidden;
}
.badge::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.badge-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.badge-text {
  min-width: 0;
}
.badge p:last-child {
  position: relative;
  z-index: 1;
}
.badge-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.badge-icon.casino {
  background: linear-gradient(
    135deg,
    rgba(255, 212, 46, 0.24),
    rgba(239, 27, 52, 0.18)
  );
}
.badge-icon.sports {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(239, 27, 52, 0.18)
  );
}
.badge-icon.adults {
  background: linear-gradient(
    135deg,
    rgba(255, 127, 80, 0.28),
    rgba(255, 212, 46, 0.18)
  );
}
.badge .value,
.rating-card .value,
.step-card .value,
.card .value {
  margin-bottom: 8px;
  color: #ffd42e;
  font-size: 24px;
  font-weight: 900;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cta,
.cta-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: #ffffff;
  background: #ef1b34;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(239, 27, 52, 0.24);
}
.cta-alt {
  background: #211116;
  color: #ffd42e;
  box-shadow: none;
}
#quick-panel {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.quick-panel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.quick-panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  background: linear-gradient(180deg, #121620 0%, #181018 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}
.quick-panel-title {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}
.quick-panel-subtitle {
  margin: 0;
  color: #dce3ef;
  font-size: 14px;
  line-height: 1.35;
}
.quick-panel-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(239, 27, 52, 0.18);
  font-size: 29px;
}
.rating-grid,
.steps-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bonus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bonus-card {
  min-height: 352px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #171b26;
}
.bonus-card.featured {
  border: 2px solid #ef1b34;
  background: linear-gradient(150deg, rgba(239, 27, 52, 0.22), #17121a 80%);
}
.bonus-card.vip {
  border: 2px solid #ffd42e;
  background: linear-gradient(150deg, rgba(255, 212, 46, 0.15), #171719 80%);
}
.bonus-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #ef1b34;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bonus-card.vip .bonus-label {
  background: #ffd42e;
  color: #17090b;
}
.bonus-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}
.bonus-amount {
  margin: 0 0 12px;
  color: #ff4158;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}
.bonus-card.vip .bonus-amount {
  color: #ffd42e;
}
.bonus-card p {
  color: #dce3ef;
}
.bonus-details {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.bonus-detail {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce3ef;
  font-size: 14px;
}
.bonus-detail span:last-child {
  color: #ffffff;
  font-weight: 900;
  text-align: right;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 16px;
  background: #171b26;
}
td {
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px;
  vertical-align: top;
}
tr:first-child td {
  background: #ef1b34;
  color: #ffffff;
  font-weight: 900;
}
tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
ul,
ol {
  margin: 12px 0 14px 22px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
.note {
  background: rgba(239, 27, 52, 0.12);
  border-left: 5px solid #ef1b34;
  padding: 16px;
  border-radius: 14px;
}
.faq-container {
  display: grid;
  gap: 12px;
}
.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 4px solid #ef1b34;
  border-radius: 16px;
  padding: 16px;
  background: #171b26;
}
.faq-question {
  margin-bottom: 8px;
  color: #ffd42e;
}
.faq-answer {
  display: block;
  margin-bottom: 0;
}
.footer {
  margin-top: 34px;
  padding: 28px 20px;
  color: #ffffff;
  background: #10060a;
  border-top: 1px solid rgba(255, 48, 71, 0.42);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto 10px;
}
.footer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}
.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-chip-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

#yenilenib {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

#yenilenib .date-strip {
  max-width: none;
  margin: 0;
}

@media (max-width: 850px) {
  .header {
    padding: 10px 12px;
  }
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }
  .header-top {
    display: contents;
  }
  .logo {
    grid-column: 1;
    grid-row: 1;
    width: 142px;
    min-height: 42px;
    margin: 0;
  }
  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    width: 46px;
    height: 42px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: #ffffff;
  }
  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: nowrap;
  }
  .header-action {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .menu-state {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .nav-list {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .menu-state:checked ~ .nav-list {
    display: grid;
  }
  .nav-list a {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 14px;
  }
  .page-links {
    padding: 10px;
    border-radius: 16px;
  }
  .page-links ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .page-links a {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 13px;
  }
  .link-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 14px;
  }
  .hero-badges,
  .quick-panel-grid,
  .rating-grid,
  .steps-grid,
  .bonus-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 25px;
  }
  .section {
    margin: 16px 12px;
    padding: 20px;
  }
  .badge-head {
    align-items: flex-start;
    gap: 12px;
  }
  .badge-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 26px;
    border-radius: 16px;
  }
  .footer-features {
    gap: 8px;
  }
  .footer-chip {
    width: 100%;
    border-radius: 14px;
  }
  .date-strip,
  .page-links {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 520px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .logo {
    grid-column: 1;
    width: 136px;
  }
  .header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin-top: 2px;
  }
  .menu-toggle {
    grid-column: 2;
  }
  .menu-state,
  .nav-list {
    grid-row: 3;
  }
  .page-links ul {
    grid-template-columns: 1fr;
  }
}
