/* Custom styles */
/* ===== HEADER (Clash Royale) ===== */

.header_clashroyale__V0ceA {
  background-color: #0b3c7d;
}

/* HEIGHT + ALIGN */
.header_header__aEre8 {
  height: 64px;
  display: flex;
  align-items: center;
}

/* CONTENT */
.header_content__4hEDm {
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header_logo__Rz_Om {
  position: relative;
  width: 130px;
  height: 40px;
  display: block;
  margin-left: -15px;
}

.header_logo__Rz_Om img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* MENU BUTTON */
.header_menuButton__TqCpT {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.header_menuButton__TqCpT svg {
  width: 26px;
  height: 26px;
}

/* STICKY HEADER */
.header_StickyHeader__afXYg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* PAGE OFFSET */
.page-content {
  padding-top: 64px;
}


/* ===== GLOBAL ===== */
body {
    font-family: 'Lilita One', cursive;
}

.hidden {
    display: none;
}

/* ===== PLATFORM BUTTON ===== */
.platform-btn.selected {
    border-color: #eab308;
    background-color: rgba(234, 179, 8, 0.1);
}

.platform-btn.selected span {
    color: #facc15;
}

/* ===== IMAGE BUTTON (CONTINUE / CONFIRM) ===== */
.image-btn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
    cursor: pointer;
}

.image-btn:active {
    transform: scale(0.98);
}

.image-btn img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.image-btn span {
    position: absolute;
    color: white;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

/* ===== ERROR MESSAGE ===== */
#error-msg {
    color: #ff4d4f;
    background-color: rgba(255, 77, 79, 0.1);
    text-align: center;
    padding: 6px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== STARS BACKGROUND ===== */
.stars,
.stars2,
.stars3 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/stars.png') repeat top center;
    z-index: -1;
}

.stars {
    z-index: 0;
    background-size: 1000px 1000px;
    animation: move-stars 50s linear infinite;
}

.stars2 {
    z-index: 1;
    background-size: 1500px 1500px;
    animation: move-stars 100s linear infinite;
}

.stars3 {
    z-index: 2;
    background-size: 2000px 2000px;
    animation: move-stars 150s linear infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100); }
}

.animate-marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes move-stars {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

@keyframes bounce-custom {
    0%, 100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(5%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce-custom {
    animation: bounce-custom 2s infinite;
}

@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.info-animate {
    animation: pulse-soft 1.8s ease-in-out infinite;
}

/* ===== TEXT UTIL ===== */
.stroke-black {
    -webkit-text-stroke: 1.5px black;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== FOOTER BASE ===== */

.styles_footer__1cZ8q {
  background: #000;
  color: #fff;
  padding: 30px 10vw 20px;
  font-family: Arial, sans-serif;
}

/* ===== TOP LINKS ===== */
.styles_links-wrapper__BmrYJ {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.styles_links-wrapper__BmrYJ a {
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
}

.styles_links-wrapper__BmrYJ a:hover {
  text-decoration: underline;
}

/* ===== FOOTER BOTTOM ===== */
.styles_footer-bottom__4Uy_G {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #262626;
  margin-top: 25px;
  padding-top: 20px;
  gap: 20px;
}

/* ===== LEFT (LOGO + COOKIE) ===== */
.styles_bottom-links__RK3oy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.styles_bottom-links__RK3oy a {
  color: #aaa;
  font-size: 0.85rem;
  text-decoration: none;
}

.styles_bottom-links__RK3oy a:hover {
  color: #fff;
}

.styles_bottom-links__RK3oy img {
  display: block;
  width: 52px;
  height: auto;
}

/* ===== SOCIAL ICONS ===== */
.styles_social__J7f1N {
  display: flex;
  align-items: center;
}

.styles_social__J7f1N a {
  opacity: 0.6;
  margin-left: 14px;
}

.styles_social__J7f1N a:hover {
  opacity: 1;
}

.styles_social__J7f1N svg {
  width: 22px;
  height: 22px;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .styles_footer-bottom__4Uy_G {
    flex-direction: column;
    text-align: center;
  }

  .styles_bottom-links__RK3oy {
    flex-direction: column;
  }

  .styles_social__J7f1N {
    justify-content: center;
  }
}


/* ===== button free ===== */

.Button_Button__Msu2a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 48px;
    border-radius: 12px;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-family: SupercellText-Bold,system-ui,sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5
}

@media(min-width: 64em) {
    .Button_Button__Msu2a {
        font-family:SupercellText-Bold,system-ui,sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5
    }
}

.BuyButton_FreebieButton__0vwyf.BuyButton_clashroyale__HZKTK {
    font-family: Clash,system-ui,sans-serif;
    line-height: 1;
    font-weight: 500;
    paint-order: stroke fill;
    -webkit-text-stroke-width: .1em;
    text-shadow: 0 .1em 0 #000,-.03em .1em 0 #000,.03em .1em 0 #000;
    -webkit-text-stroke-color: #000;
    letter-spacing: -.03em;
    color: #fff;
    text-align: start;
    text-wrap: balance;
    transform: translateZ(0)
}

.BuyButton_FreebieButton__0vwyf.BuyButton_clashroyale__HZKTK {
    font-size: 16px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
    min-width: 110px;
    text-decoration: none;
    padding: 16px 16px 20px;
    text-align: center;
    background: #3ae449;
    box-shadow: inset 0 -4px 0 #149528,inset 0 -8px 0 #28d83c,inset 0 2px 1px #8efa9a;
    border: 1.5px solid #000;
    position: relative
}

.BuyButton_FreebieButton__0vwyf.BuyButton_clashroyale__HZKTK.BuyButton_Unclaimed__BEeaA span {
    position: relative;
    z-index: 1;
    margin-top: 4px
}


.BuyButton_FreebieButton__0vwyf.BuyButton_clashroyale__HZKTK.BuyButton_Unclaimed__BEeaA:after {
    position: absolute;
    content: "";
    z-index: 0;
    width: auto;
    height: 18px;
    background: #6beb77;
    display: flex;
    top: 4px;
    left: 4px;
    right: 4px;
    border-radius: 4px
}

.BuyButton_FreebieButton__0vwyf.BuyButton_clashroyale__HZKTK.BuyButton_Unclaimed__BEeaA:before {
    position: absolute;
    content: "";
    height: 7px;
    width: 5px;
    display: flex;
    z-index: 1;
    background: hsla(0,0%,100%,.65);
    top: 3px;
    right: 3px;
    border-radius: 50%;
    transform: rotate(-45deg)
}

/*fonts*/

@font-face {
  font-family: 'ClashRegular';
  src: url('/media/clash-regular.24a357c6.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html, body, body *:not(footer):not(footer *) {
  font-family: 'ClashRegular' !important;
}


/* button $$$$ */

.Button_Button__Msu2a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 48px;
    border-radius: 12px;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-family: SupercellText-Bold,system-ui,sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5
}

@media(min-width: 64em) {
    .Button_Button__Msu2a {
        font-family:SupercellText-Bold,system-ui,sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5
    }
}

.BuyButton_StoreFrontBuyButton__Zykdy.BuyButton_Dark__Ww3Wu {
    background-color: #000;
    box-shadow: inset 0 3px 0 #4d4d4d;
    color: #fff
}

.BuyButton_Dark__Ww3Wu,.BuyButton_StoreFrontBuyButton__Zykdy.BuyButton_LightBordered__ZXdKY,.BuyButton_StoreFrontBuyButton__Zykdy.BuyButton_Light__yoKPW {
    padding-inline-start:10px;padding-inline-end:12px}

.BuyButton_ContentWrapper__pg5il {
    opacity: .6!important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.BuyButton_Icon__gacm5.BuyButton_WithContent__L0cYC {
    margin-right: 6px
}






















