* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #07090d;
  color: #edf2fb;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 38, 61, 0.16), transparent 28%),
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 210, 46, 0.1),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(20, 5, 8, 0.98), rgba(7, 9, 13, 1));
  z-index: -1;
}
header {
  background: #10060a;
  border-bottom: 1px solid rgba(255, 48, 71, 0.5);
  padding: 10px 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo {
  width: 138px;
  min-height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd62f 0%, #ffbc16 58%, #ff4857 100%);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(255, 51, 73, 0.18);
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.logo::before {
  content: "PIN UP";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15090c;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cta-link,
.cta-alt {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f01833, #b80f25);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(255, 92, 111, 0.55);
  box-shadow: 0 8px 20px rgba(240, 24, 51, 0.24);
}
.cta-link:hover,
.cta-alt:hover {
  background: linear-gradient(135deg, #ff2944, #cd152d);
}
.header-actions .cta-link {
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.15;
  box-shadow: 0 5px 14px rgba(240, 24, 51, 0.2);
}
.header-actions .cta-link:first-child {
  background: #211116;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}
.section {
  max-width: 1180px;
  margin: 22px auto;
  padding: 28px;
  background: #11151f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
.hero {
  background: linear-gradient(
    135deg,
    rgba(230, 25, 49, 0.95),
    rgba(83, 11, 21, 0.98) 50%,
    rgba(14, 9, 13, 0.98)
  );
  color: #ffffff;
  padding: 44px 28px;
  overflow: hidden;
  position: relative;
  border-color: rgba(255, 82, 101, 0.4);
}
.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -80px;
  top: -90px;
  background: rgba(255, 210, 46, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 210, 46, 0.15);
}
.hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -90px;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.24;
}
h1 {
  font-size: 44px;
}
h2 {
  font-size: 30px;
  color: #ff4358;
}
h3 {
  font-size: 22px;
  color: #ffd52f;
}
.hero h1,
.hero h2 {
  color: #ffffff;
}
p {
  margin: 0 0 14px;
}
.hero-badges,
.card-grid,
.steps-grid,
.bonus-grid,
.quick-panel-grid,
.rating-grid {
  display: grid;
  gap: 16px;
}
.hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}
.badge,
.card,
.step-card,
.bonus-card,
.rating-card {
  background: #171b26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 26px rgba(0, 0, 0, 0.22);
}
.badge p,
.card p,
.step-card p,
.bonus-card p,
.rating-card p {
  margin-bottom: 8px;
}
.badge .value,
.card .value,
.step-card .value,
.rating-card .value {
  font-size: 24px;
  font-weight: 900;
  color: #ffd52f;
}
.hero .badge {
  background: rgba(12, 12, 17, 0.4);
  border-color: rgba(255, 255, 255, 0.14);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rating-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quick-panel-section {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.quick-panel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.quick-panel-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0c131f 0%, #0a1019 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.quick-panel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at right center,
    rgba(230, 25, 49, 0.16),
    transparent 42%
  );
  pointer-events: none;
}
.quick-panel-item.highlight {
  background: linear-gradient(
    135deg,
    rgba(54, 17, 23, 0.98),
    rgba(22, 14, 18, 0.98)
  );
}
.quick-panel-text {
  position: relative;
  z-index: 1;
}
.quick-panel-title {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
}
.quick-panel-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #eef2f8;
}
.quick-panel-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
}
.quick-panel-icon.casino {
  background: radial-gradient(
    circle,
    rgba(255, 93, 116, 0.22),
    rgba(28, 8, 13, 0.9)
  );
  color: #ff4a62;
  box-shadow:
    inset 0 0 0 1px rgba(255, 74, 98, 0.34),
    0 0 18px rgba(240, 24, 51, 0.18);
}
.quick-panel-icon.sports {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    rgba(12, 15, 21, 0.92)
  );
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(255, 255, 255, 0.1);
}
.quick-panel-icon.luckyjet {
  background: radial-gradient(
    circle,
    rgba(179, 110, 255, 0.24),
    rgba(15, 12, 24, 0.92)
  );
  color: #cc80ff;
  box-shadow:
    inset 0 0 0 1px rgba(204, 128, 255, 0.3),
    0 0 18px rgba(179, 110, 255, 0.16);
}
.quick-panel-icon.aviator {
  background: radial-gradient(
    circle,
    rgba(255, 67, 88, 0.24),
    rgba(22, 10, 15, 0.94)
  );
  color: #ff4258;
  box-shadow:
    inset 0 0 0 1px rgba(255, 67, 88, 0.32),
    0 0 18px rgba(255, 67, 88, 0.16);
}
.bonus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bonus-card {
  min-height: 378px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #121418;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bonus-card.featured {
  background: linear-gradient(
    150deg,
    rgba(66, 17, 20, 0.96),
    rgba(34, 13, 16, 0.98)
  );
  border: 2px solid #f1241e;
  box-shadow:
    0 0 0 1px rgba(241, 36, 30, 0.16),
    0 16px 36px rgba(241, 36, 30, 0.1);
}
.bonus-card.vip {
  background: linear-gradient(
    150deg,
    rgba(40, 37, 11, 0.96),
    rgba(19, 18, 14, 0.98)
  );
  border: 2px solid #ffd400;
}
.bonus-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #e61931;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.bonus-card.vip .bonus-label {
  background: #ffd400;
  color: #140b0d;
}
.bonus-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}
.bonus-amount {
  margin: 0 0 12px;
  color: #ff252f;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}
.bonus-card.vip .bonus-amount {
  color: #ffd52f;
}
.bonus-card > p:not(.bonus-amount) {
  color: #c9ced8;
}
.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.05);
  color: #d9dde7;
  font-size: 14px;
}
.bonus-detail span:last-child {
  color: #ffffff;
  font-weight: 900;
  text-align: right;
}
.bonus-card .cta-link,
.bonus-card .cta-alt {
  width: 100%;
  margin-top: 4px;
}
.bonus-card .cta-alt {
  background: rgba(230, 25, 49, 0.12);
  color: #ff465b;
  border-color: #ff2532;
  box-shadow: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 16px;
  background: #151a24;
}
td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  vertical-align: top;
}
tr:first-child td {
  background: #e61931;
  color: #ffffff;
  font-weight: 800;
}
tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
ul,
ol {
  margin: 12px 0 14px 22px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
.note {
  background: rgba(230, 25, 49, 0.1);
  border-left: 4px solid #e61931;
  padding: 16px;
  border-radius: 14px;
}
.faq-container {
  display: grid;
  gap: 12px;
}
.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #e61931;
  border-radius: 16px;
  padding: 16px 52px 16px 16px;
  background: #171b26;
}
.faq-item .toggle {
  display: none;
}
.faq-question {
  margin-bottom: 0;
  color: #ffd52f;
}
.icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e61931;
  box-shadow: 0 0 18px rgba(230, 25, 49, 0.32);
}
.icon::before {
  content: "";
  position: absolute;
  background: #ffffff;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
}
.faq-answer {
  display: block;
  margin-top: 12px;
}
footer {
  background: #090a0e;
  color: #ffffff;
  border-top: 1px solid rgba(230, 25, 49, 0.45);
  margin-top: 34px;
  padding: 28px 20px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto 12px;
}
.footer-brand p {
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  header {
    padding: 10px 12px;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .logo {
    margin: 0 auto;
  }
  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 7px;
  }
  .header-actions .cta-link {
    width: 100%;
    padding: 8px 12px;
  }
  .hero-badges,
  .card-grid,
  .steps-grid,
  .bonus-grid,
  .quick-panel-grid,
  .rating-grid {
    grid-template-columns: 1fr;
  }
  .quick-panel-item {
    min-height: 82px;
    padding: 16px 18px;
  }
  .quick-panel-title {
    font-size: 18px;
  }
  .quick-panel-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    font-size: 28px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 25px;
  }
  .section {
    margin: 16px 12px;
    padding: 20px;
  }
}
