*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  min-height:100%;
  font-family:Arial,Helvetica,sans-serif;
  color:#fff;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.38),
      rgba(0,0,0,.72)
    ),
    var(--bg);

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
  background-color:#080500;

  overflow-x:hidden;
}

/* OVERLAY */
body:after{
  content:"";
  position:fixed;
  inset:0;

  background:
    radial-gradient(
      circle at top,
      rgba(255,210,90,.14),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.05),
      rgba(0,0,0,.28)
    );

  z-index:-1;
  pointer-events:none;
}

/* PARTICLES */
.particles{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;

  background-image:
    radial-gradient(circle,rgba(255,255,255,.5) 1px,transparent 1px),
    radial-gradient(circle,rgba(255,209,77,.35) 1px,transparent 1px);

  background-size:
    90px 90px,
    140px 140px;

  animation:floatGold 18s linear infinite;

  opacity:.45;
}

@keyframes floatGold{

  from{
    background-position:
      0 0,
      30px 10px;
  }

  to{
    background-position:
      140px 240px,
      190px 280px;
  }

}

/* WRAP */
.site-shell{
  position:relative;
  z-index:2;

  width:760px;
  max-width:calc(100% - 28px);
  min-height:100vh;

  margin:18px auto;

  background:rgba(0,0,0,.88);

  border-radius:18px;

  overflow:hidden;

  box-shadow:
    0 0 0 2px rgba(190,112,0,.45),
    0 30px 90px rgba(0,0,0,.72);
}

/* GOLD FRAME */
.gold-frame{
  border:2px solid #b56a00;
}

/* HEADER */
.hero-head{
  background:#000;
  text-align:center;
  overflow:hidden;
}

.header-img{
  display:block;
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
}

/* LOGO */
.logo-img{
  max-width:330px;
  width:70%;
  padding:16px;
}

.hero-head h1{
  margin:0;
  padding:25px 15px;

  color:#ffd56a;
  letter-spacing:1px;
}

/* TICKER */
.ticker{
  display:block;

  padding:8px 10px;

  border-top:1px solid rgba(172,99,0,.8);
  border-bottom:1px solid rgba(172,99,0,.8);

  font-size:16px;

  background:#050505;
  color:#fff;
}

/* MENU */
.menu-bar{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;

  padding:18px 14px;

  background:#020202;
}

.menu-bar a{
  text-decoration:none;
  color:#fff;

  font-weight:800;
  font-size:14px;

  padding:12px 18px;

  border-radius:7px;
  border:1px solid #b66d08;

  background:
    linear-gradient(
      #704000,
      #392000
    );

  box-shadow:
    inset 0 1px 0 rgba(255,214,120,.35),
    0 4px 14px rgba(0,0,0,.45);

  transition:.18s;
}

.menu-bar a:hover{
  background:
    linear-gradient(
      #af6c09,
      #4a2800
    );

  transform:translateY(-1px);
}

/* PROMO */
.promo-list{
  padding:0 14px 14px;
  margin:0;
}

.promo-card{
  margin:0;
  padding:0;

  background:transparent;

  border:0;
  border-radius:0;

  overflow:hidden;
}

.promo-card:last-child{
  margin-bottom:0;
}

.promo-trigger{
  display:block;
  width:100%;

  border:0;
  background:transparent;

  padding:0;
  margin:0;

  cursor:pointer;
  text-align:left;

  line-height:0;
}

.promo-trigger img{
  display:block;
  width:100%;
  height:auto;

  border:0;
  border-radius:0;

  margin:0;
  padding:0;

  transition:.2s;
}

.promo-trigger:hover img{
  filter:brightness(1.03);
}

.promo-title-fallback{
  display:none;

  padding:18px;

  color:#ffd56a;
  font-weight:800;
}

.no-image .promo-title-fallback{
  display:block;
}

/* CONTENT */
.promo-content{
  display:none;

  padding:22px 18px 30px;

  background:#000;

  color:#f7f7f7;

  font-size:16px;
  line-height:1.8;

  word-break:break-word;
  overflow-wrap:break-word;
}

/* FIX TEXT */
.content-body{
  width:100%;
}

.content-body p{
  margin:0 0 16px;
  line-height:1.85;

  color:#f4f4f4;

  white-space:normal;
}

.content-body br{
  display:block;
  content:"";
  margin-bottom:10px;
}

.content-body ul,
.content-body ol{
  margin:14px 0;
  padding-left:22px;
}

.content-body li{
  margin-bottom:12px;
  line-height:1.8;
}

.content-body strong{
  color:#ffd36b;
}

.content-body img{
  max-width:100%;
  height:auto;

  border-radius:10px;

  margin:14px 0;
}

.content-body table{
  width:100%;
  border-collapse:collapse;
  margin-top:15px;
}

.content-body table td,
.content-body table th{
  border:1px solid rgba(255,180,0,.2);
  padding:10px;
}

.content-body table th{
  background:#1a1200;
  color:#ffd36b;
}

/* BONUS RULES */
.bonus-rules{
  display:flex;
  flex-direction:column;
  gap:12px;

  line-height:1.85;
}

.bonus-rules p{
  margin:0;
}

/* BUTTON */
.claim-btn{
  display:inline-flex;

  margin:0 0 18px;
  padding:11px 15px;

  border:1px solid #d4952f;
  border-radius:8px;

  color:#000;
  text-decoration:none;
  font-weight:900;

  background:
    linear-gradient(
      180deg,
      #ffe49b,
      #b87509
    );
}

/* FOOTER */
.footer{
  text-align:center;

  padding:18px 10px 28px;

  color:#d2b27d;

  font-size:12px;
  text-transform:uppercase;
}

/* 404 */
.not-found{
  min-height:100vh;

  display:grid;
  place-content:center;

  text-align:center;

  background:#050505;
}

.not-found a{
  color:#ffd36b;
}

/* MOBILE */
@media(max-width:520px){

  html,
  body{
    background-attachment:scroll;
  }

  .site-shell{
    max-width:calc(100% - 14px);
    margin:7px auto;
    border-radius:14px;
  }

  .gold-frame{
    border-width:1px;
  }

  .ticker{
    font-size:14px;
  }

  .menu-bar{
    gap:8px;
    padding:14px 8px;
  }

  .menu-bar a{
    font-size:12px;
    padding:10px 12px;
  }

  .promo-list{
    padding:0 7px 7px;
  }

  .promo-card{
    margin:0;
    border-radius:0;
  }

  .promo-content{
    padding:18px 14px 26px;

    font-size:15px;
    line-height:1.75;
  }

  .content-body p{
    margin-bottom:15px;
    line-height:1.8;
  }

  .content-body li{
    margin-bottom:10px;
  }

}
