:root{
          color-scheme: light dark;
          --bg: #0E1111;
          --surface: rgba(255,255,255,0.06);
          --surface-2: rgba(255,255,255,0.09);
          --text: rgba(255,255,255,0.92);
          --muted: rgba(255,255,255,0.68);
          --border: rgba(255,255,255,0.12);
          --accent: #7c5cff;
          --accent-2: #00d1b2;
          --shadow: 0 18px 45px rgba(0,0,0,0.45);
          --radius: 16px;
          --gutter: 32px;
          --maxw: 980px;
          --font: -apple-system, 'SF Pro Display', 'SF Pro Text', BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

[data-theme="light"]{
          color-scheme: light;
          --bg: #0E1111;
          --surface: rgba(0,0,0,0.035);
          --surface-2: rgba(0,0,0,0.06);
          --text: rgba(0,0,0,0.88);
          --muted: rgba(0,0,0,0.6);
          --border: rgba(0,0,0,0.12);
          --shadow: 0 18px 45px rgba(20,20,60,0.12);
}

*{
          box-sizing: border-box;
}

html, body{
          height: 100%;
}

body{
          margin: 0;
          font-family: var(--font);
          background: var(--bg);
          color: var(--text);
}

.site-header{
          position: relative;
          z-index: 100;
          margin-top: 16px;
          margin-left: auto;
          margin-right: auto;
          max-width: 900px;
          border-radius: 999px;
          animation: fadeInUp 0.6s ease-out;
}

.header-inner{
          display: grid;
          grid-template-columns: auto 1fr auto;
          align-items: center;
          gap: 24px;
          padding: 10px 32px;
}

.header-left{
          justify-self: start;
}

.header-center{
          justify-self: center;
}

.header-right{
          justify-self: end;
}

.logo{
          display: inline-flex;
          align-items: center;
          gap: 10px;
          text-decoration: none;
          color: inherit;
          transition: opacity 180ms ease;
}

.logo:hover{
          opacity: 0.85;
}

.logo__img{
          display: block;
          height: 40px;
          width: auto;
}

.logo__text{
          font-size: 22px;
          font-weight: 600;
          letter-spacing: 0.03em;
          color: rgba(255,255,255,0.96);
}

.nav{
          display: flex;
          align-items: center;
          gap: 6px;
          flex-wrap: wrap;
          justify-content: center;
}

.nav-btn{
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 11px 16px;
          color: rgba(255,255,255,0.68);
          text-decoration: none;
          font-weight: 600;
          font-size: 15px;
          line-height: 1;
          transition: color 180ms ease;
}

.nav-btn:hover{
          color: rgba(255,255,255,0.96);
}

.reward-btn{
          appearance: none;
          border: 1px solid rgba(0,0,0,0.5);
          background: #FED813;
          color: #111313;
          border-radius: 99px;
          padding: 11px 20px;
          font-weight: 600;
          font-size: 15px;
          letter-spacing: 0.01em;
          line-height: 1;
          cursor: pointer;
          box-shadow:
                    0 8px 20px rgba(0,0,0,0.35),
                    inset 0 1px 0 rgba(255,255,255,0.5),
                    inset 0 -1px 0 rgba(0,0,0,0.12);
          transition: transform 120ms ease, filter 140ms ease, box-shadow 140ms ease;
}

.reward-btn:hover{
          transform: translateY(-1px);
          filter: saturate(1.05) brightness(1.03);
          box-shadow:
                    0 10px 24px rgba(0,0,0,0.4),
                    inset 0 1px 0 rgba(255,255,255,0.55),
                    inset 0 -1px 0 rgba(0,0,0,0.14);
}

.reward-btn:active{
          transform: translateY(0);
}

.reward-btn:focus-visible,
.nav-btn:focus-visible{
          outline: 2px solid rgba(254,216,19,0.9);
          outline-offset: 3px;
}

.main-content{
          position: relative;
          z-index: 10;
}

.hero{
          padding: 120px 20px;
          text-align: center;
}

@keyframes fadeInUp{
          from{
                    opacity: 0;
                    transform: translateY(30px);
          }
          to{
                    opacity: 1;
                    transform: translateY(0);
          }
}

.hero-container{
          max-width: 640px;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 20px;
}

.badge-link{
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 6px 8px 6px 12px;
          background: rgba(255, 255, 255, 0.06);
          border: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 999px;
          text-decoration: none;
          transition: background 200ms ease, border-color 200ms ease;
          animation: fadeInUp 0.6s ease-out;
}

.badge-link:hover{
          background: rgba(255, 255, 255, 0.08);
          border-color: rgba(255, 255, 255, 0.15);
}

.badge-tag{
          padding: 4px 10px;
          background: rgba(253, 216, 15, 0.15);
          border-radius: 999px;
          color: rgba(253, 216, 15, 0.95);
          font-size: 12px;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 0.02em;
}

.badge-text{
          color: rgba(255, 255, 255, 0.9);
          font-size: 14px;
          font-weight: 500;
}

.badge-arrow{
          display: flex;
          align-items: center;
          justify-content: center;
          color: rgba(253, 216, 15, 0.95);
          flex-shrink: 0;
}

.badge-arrow svg{
          display: block;
          width: 16px;
          height: 16px;
}

.hero-title{
          margin: 0;
          font-size: 68px;
          font-weight: 600;
          line-height: 1.12;
          letter-spacing: -0.03em;
          color: rgba(255, 255, 255, 0.98);
          animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-subtitle{
          margin: 0;
          font-size: 19px;
          line-height: 1.65;
          color: rgba(255, 255, 255, 0.58);
          max-width: 600px;
          font-weight: 400;
          animation: fadeInUp 0.6s ease-out 0.4s both;
}

.gifts-showcase{
          width: 100%;
          max-width: 600px;
          margin: 30px 0;
          overflow: hidden;
          animation: fadeInUp 0.6s ease-out 0.8s both;
          position: relative;
}

.gifts-showcase::before,
.gifts-showcase::after{
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          width: 60px;
          z-index: 10;
          pointer-events: none;
}

.gifts-showcase::before{
          left: 0;
          background: linear-gradient(to right, #0E1111, transparent);
}

.gifts-showcase::after{
          right: 0;
          background: linear-gradient(to left, #0E1111, transparent);
}

.gifts-track{
          display: flex;
          align-items: center;
          gap: 20px;
          animation: slideGifts 70s linear infinite;
          will-change: transform;
          width: fit-content;
}

.gift-item{
          flex-shrink: 0;
          width: 120px;
          height: 120px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(255, 255, 255, 0.06);
          border: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 16px;
          padding: 0;
          overflow: hidden;
          transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gift-item img{
          width: 100%;
          height: 100%;
          object-fit: fill;
          display: block;
          filter: drop-shadow(0 4px 12px rgba(253, 216, 15, 0.3));
}

@keyframes slideGifts{
          0%{
                    transform: translateX(0);
          }
          100%{
                    transform: translateX(calc(-50%));
          }
}

.prizes-section{
          padding: 80px 20px;
          text-align: center;
}

.prizes-title{
          font-size: 56px;
          font-weight: 700;
          line-height: 1.1;
          letter-spacing: -0.02em;
          margin: 0 0 12px 0;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 12px;
          flex-wrap: wrap;
          text-transform: uppercase;
          animation: fadeInUp 0.6s ease-out 0.9s both;
}

.prizes-title-part{
          color: rgba(253, 216, 15, 0.95);
}

.prizes-title-accent{
          color: rgba(255, 255, 255, 0.98);
}

.prizes-subtitle{
          font-size: 17px;
          color: rgba(255, 255, 255, 0.6);
          margin: 0 0 50px 0;
          animation: fadeInUp 0.6s ease-out 1.0s both;
}

.scroll-animate{
          opacity: 0;
          transform: translateY(30px);
          transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animated{
          opacity: 1;
          transform: translateY(0);
}

.case-opening{
          max-width: 900px;
          margin: 0 auto;
          animation: fadeInUp 0.6s ease-out 1.1s both;
}

.case-preview{
          margin-bottom: 50px;
}

.preview-slots{
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 30px;
}

.slot-wrapper{
          position: relative;
          width: 100%;
          max-width: 600px;
          margin: 0 auto;
          overflow: hidden;
          padding: 0;
          box-sizing: border-box;
}

.slot-wrapper::before,
.slot-wrapper::after{
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          width: 60px;
          z-index: 10;
          pointer-events: none;
}

.slot-wrapper::before{
          left: 0;
          background: linear-gradient(to right, #0E1111, transparent);
}

.slot-wrapper::after{
          right: 0;
          background: linear-gradient(to left, #0E1111, transparent);
}

.slot-arrow{
          position: absolute;
          top: -50px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 1000;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          pointer-events: none;
          visibility: visible;
          opacity: 1;
}

.slot-arrow img{
          width: 100%;
          height: 100%;
          object-fit: contain;
          display: block;
          filter: drop-shadow(0 4px 12px rgba(254, 216, 19, 0.6));
          animation: arrowPulse 2s ease-in-out infinite;
          visibility: visible;
          opacity: 1;
          position: relative;
          z-index: 1001;
}

@keyframes arrowPulse{
          0%, 100%{
                    transform: translateY(0);
                    opacity: 1;
          }
          50%{
                    transform: translateY(-4px);
                    opacity: 0.8;
          }
}

.slot-items{
          display: flex;
          flex-direction: row;
          align-items: flex-start;
          gap: 0;
          width: auto;
          min-height: 180px;
          will-change: transform;
          position: relative;
          transform: translate3d(0,0,0);
}

.slot-items.spinning{ display: flex; }

.slot-item{
          width: 160px;
          min-height: 180px;
          flex-shrink: 0;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.1);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          overflow: hidden;
          box-sizing: border-box;
          border-radius: 12px;
          margin-right: 12px;
          padding: 12px 8px;
}

.slot-item img{
          width: 90%;
          height: auto;
          max-height: 100px;
          object-fit: contain;
          display: block;
          margin-bottom: 4px;
}

.slot-item-name{
          font-size: 11px;
          font-weight: 600;
          color: rgba(255, 255, 255, 0.85);
          text-align: center;
          line-height: 1.3;
          text-transform: uppercase;
          letter-spacing: 0.02em;
}

@keyframes slotSpin{
          0%{
                    transform: scale(1);
                    border-color: rgba(255, 255, 255, 0.08);
          }
          10%{
                    transform: scale(1.05);
                    border-color: rgba(254, 216, 19, 0.6);
          }
          90%{
                    transform: scale(1.05);
                    border-color: rgba(254, 216, 19, 0.6);
          }
          100%{
                    transform: scale(1);
                    border-color: rgba(254, 216, 19, 0.4);
          }
}

.case-actions{
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 16px;
          margin-bottom: 12px;
}

.case-btn{
          appearance: none;
          border: none;
          padding: 14px 28px;
          border-radius: 12px;
          font-weight: 600;
          font-size: 15px;
          cursor: pointer;
          transition: transform 0.2s ease, opacity 0.2s ease;
          display: inline-flex;
          align-items: center;
          gap: 8px;
}

.case-btn-open{
          background: #FED813;
          color: #111313;
          border: 1px solid rgba(0, 0, 0, 0.3);
}

.case-btn-open:hover{
          transform: translateY(-1px);
          filter: brightness(1.05);
}

.case-btn-open:disabled{
          opacity: 0.5;
          cursor: not-allowed;
          pointer-events: none;
}

.case-btn-open:disabled:hover{
          transform: none;
          filter: none;
}

.case-disclaimer{
          text-align: center;
          font-size: 13px;
          color: rgba(255, 255, 255, 0.5);
          margin: 0;
}

.case-contents{
          margin-top: 50px;
          animation: fadeInUp 0.6s ease-out 1.2s both;
}

.contents-title{
          font-size: 24px;
          font-weight: 600;
          color: rgba(255, 255, 255, 0.95);
          margin: 0 0 24px 0;
          text-align: center;
}

.contents-list{
          display: flex;
          flex-direction: column;
          gap: 10px;
          max-height: 400px;
          overflow: hidden;
}

.content-item{
          background: rgba(255, 255, 255, 0.03);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 12px;
          padding: 12px 14px;
          display: grid;
          grid-template-columns: 60px 1fr 100px auto;
          column-gap: 15px;
          row-gap: 0;
          align-items: center;
          transition: background 180ms ease, border-color 180ms ease, opacity 300ms ease, transform 300ms ease, max-height 300ms ease, margin 300ms ease;
          opacity: 0;
          transform: translateY(-10px);
          max-height: 0;
          margin: 0;
          overflow: hidden;
          animation: slideInWin 0.4s ease forwards;
}

.content-item.removing{
          animation: slideOutWin 0.3s ease forwards;
}

@keyframes slideInWin {
          from {
                    opacity: 0;
                    transform: translateY(-10px);
                    max-height: 0;
                    margin: 0;
          }
          to {
                    opacity: 1;
                    transform: translateY(0);
                    max-height: 100px;
                    margin: 0;
          }
}

@keyframes slideOutWin {
          from {
                    opacity: 1;
                    transform: translateY(0);
                    max-height: 100px;
                    margin: 0;
          }
          to {
                    opacity: 0;
                    transform: translateY(-10px);
                    max-height: 0;
                    margin: 0;
          }
}

.content-item:hover{
          background: rgba(255, 255, 255, 0.05);
          border-color: rgba(255, 255, 255, 0.12);
}

.content-image{
          width: 60px;
          height: 60px;
          border-radius: 10px;
          flex-shrink: 0;
          display: flex;
          align-items: center;
          justify-content: center;
          overflow: hidden;
          background: rgba(0, 0, 0, 0.2);
}

.content-image img{
          width: 100%;
          height: 100%;
          object-fit: contain;
          display: block;
          padding: 8px;
}

.content-name{
          font-size: 15px;
          font-weight: 600;
          color: rgba(255, 255, 255, 0.95);
          margin: 0;
          letter-spacing: 0.01em;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          min-width: 0;
          max-width: 100%;
          text-align: left;
          align-self: center;
}

.content-time{
          display: flex;
          align-items: center;
          gap: 6px;
          font-size: 12px;
          font-weight: 500;
          color: rgba(255, 255, 255, 0.6);
          margin: 0;
          white-space: nowrap;
          justify-self: end;
}

.content-time svg{
          width: 14px;
          height: 14px;
          flex-shrink: 0;
          opacity: 0.7;
}

.content-id{
          font-size: 11px;
          font-weight: 500;
          color: rgba(255, 255, 255, 0.5);
          margin: 0;
          letter-spacing: 0.01em;
          white-space: nowrap;
          text-align: left;
}


.copy-popup{
          position: fixed;
          bottom: 30px;
          left: 50%;
          transform: translateX(-50%) translateY(100px);
          background: #FED813;
          border: 1px solid rgba(0,0,0,0.5);
          border-radius: 99px;
          padding: 11px 20px;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          color: #111313;
          font-size: 15px;
          font-weight: 600;
          letter-spacing: 0.01em;
          line-height: 1;
          white-space: nowrap;
          z-index: 1000;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.3s ease, transform 0.3s ease;
}

.copy-popup.show{
          opacity: 1;
          transform: translateX(-50%) translateY(0);
          pointer-events: auto;
}

.copy-popup svg{
          width: 16px;
          height: 16px;
          flex-shrink: 0;
          color: #111313;
}

.faq-section{
          padding: 80px 20px;
          text-align: center;
}

.faq-title{
          font-size: 56px;
          font-weight: 700;
          line-height: 1.1;
          letter-spacing: -0.02em;
          margin: 0 0 12px 0;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 12px;
          flex-wrap: wrap;
          text-transform: uppercase;
          animation: fadeInUp 0.6s ease-out 2.0s both;
}

.faq-title-part{
          color: rgba(255, 255, 255, 0.98);
}

.faq-title-accent{
          color: rgba(253, 216, 15, 0.95);
}

.faq-subtitle{
          font-size: 17px;
          color: rgba(255, 255, 255, 0.6);
          margin: 0 0 50px 0;
          animation: fadeInUp 0.6s ease-out 2.1s both;
}

.faq-container{
          max-width: 800px;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          gap: 16px;
}

.faq-item{
          background: rgba(255, 255, 255, 0.03);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 16px;
          overflow: hidden;
          transition: border-color 0.3s ease;
          animation: fadeInUp 0.6s ease-out both;
}

.faq-item.active{
          border-color: rgba(253, 216, 15, 0.3);
}

.faq-question{
          width: 100%;
          background: transparent;
          border: none;
          padding: 24px 30px;
          text-align: left;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 20px;
          cursor: pointer;
          color: rgba(255, 255, 255, 0.95);
          font-size: 18px;
          font-weight: 600;
          transition: color 0.2s ease;
}

.faq-question:hover{
          color: rgba(253, 216, 15, 0.9);
}

.faq-question span{
          flex: 1;
}

.faq-icon{
          width: 20px;
          height: 20px;
          flex-shrink: 0;
          color: rgba(253, 216, 15, 0.8);
          transition: transform 0.3s ease;
}

.faq-item.active .faq-icon{
          transform: rotate(180deg);
}

.faq-answer{
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s ease, padding 0.4s ease;
          padding: 0 30px;
}

.faq-item.active .faq-answer{
          max-height: 500px;
          padding: 0 30px 24px 30px;
}

.faq-answer p{
          margin: 0;
          color: rgba(255, 255, 255, 0.65);
          font-size: 15px;
          line-height: 1.6;
          padding-top: 8px;
}

.faq-item:nth-child(1){
          animation-delay: 2.2s;
}

.faq-item:nth-child(2){
          animation-delay: 2.3s;
}

.faq-item:nth-child(3){
          animation-delay: 2.4s;
}

.faq-item:nth-child(4){
          animation-delay: 2.5s;
}

.faq-item:nth-child(5){
          animation-delay: 2.6s;
}

.faq-item:nth-child(6){
          animation-delay: 2.7s;
}

.faq-item:nth-child(7){
          animation-delay: 2.8s;
}

.faq-item:nth-child(8){
          animation-delay: 2.9s;
}

.faq-social-links{
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 20px;
          margin-top: 40px;
          padding-top: 30px;
}

.faq-social-link{
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 48px;
          height: 48px;
          border-radius: 12px;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.1);
          transition: all 0.3s ease;
          text-decoration: none;
}

.faq-social-link:hover{
          background: rgba(255, 255, 255, 0.1);
          border-color: rgba(254, 216, 19, 0.4);
          transform: translateY(-2px);
}

.faq-social-link img{
          width: 24px;
          height: 24px;
          object-fit: contain;
}

.hero-buttons{
          display: flex;
          align-items: center;
          gap: 10px;
          margin-top: 16px;
          flex-wrap: wrap;
          justify-content: center;
          animation: fadeInUp 0.6s ease-out 0.5s both;
}

.btn{
          appearance: none;
          border: none;
          padding: 14px 26px;
          font-size: 15px;
          font-weight: 500;
          border-radius: 10px;
          cursor: pointer;
          transition: all 180ms ease;
          line-height: 1;
          display: inline-flex;
          align-items: center;
          gap: 8px;
}

.btn-primary-hero{
          appearance: none !important;
          border: 1px solid rgba(0,0,0,0.5) !important;
          background: #FED813 !important;
          color: #111313 !important;
          border-radius: 99px !important;
          padding: 11px 20px !important;
          font-weight: 600 !important;
          font-size: 15px !important;
          letter-spacing: 0.01em !important;
          line-height: 1 !important;
          cursor: pointer;
          box-shadow:
                    0 8px 20px rgba(0,0,0,0.35),
                    inset 0 1px 0 rgba(255,255,255,0.5),
                    inset 0 -1px 0 rgba(0,0,0,0.12) !important;
          transition: transform 120ms ease, filter 140ms ease, box-shadow 140ms ease !important;
}

.btn-primary-hero:hover{
          transform: translateY(-1px) !important;
          filter: saturate(1.05) brightness(1.03) !important;
          background: #FED813 !important;
          box-shadow:
                    0 10px 24px rgba(0,0,0,0.4),
                    inset 0 1px 0 rgba(255,255,255,0.55),
                    inset 0 -1px 0 rgba(0,0,0,0.14) !important;
}

.btn-primary-hero:active{
          transform: translateY(0) !important;
}

.btn-primary-hero:focus-visible{
          outline: 2px solid rgba(253,216,15,0.9) !important;
          outline-offset: 3px;
}

.btn-secondary-hero{
          background: transparent;
          color: #252525;
          border-radius: 99px;
          font-weight: 600;
}

.btn-secondary-hero:hover{
          background: rgba(37, 37, 37, 0.1);
          border-color: #252525;
          opacity: 0.8;
}

.btn-secondary-hero:active{
          transform: scale(0.98);
}

.page{
          width: 100%;
}

.gutter{
          padding-left: var(--gutter);
          padding-right: var(--gutter);
}

.container{
          max-width: var(--maxw);
          margin: 0 auto;
}

header.page{
          padding-top: 14px;
          padding-bottom: 14px;
}

main.page{
          padding-top: 10px;
          padding-bottom: 40px;
}

footer.page{
          padding-top: 26px;
          padding-bottom: 30px;
}

.brand{
          display: flex;
          align-items: center;
          gap: 12px;
}

.brand__mark{
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 44px;
          height: 44px;
          border-radius: 14px;
          background: linear-gradient(145deg, rgba(124,92,255,0.95), rgba(0,209,178,0.8));
          box-shadow: var(--shadow);
          font-weight: 800;
          letter-spacing: 0.5px;
}

.brand__name{
          font-weight: 700;
          color: var(--text);
          opacity: 0.95;
}

header .container{
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 16px;
}

.nav{
          display: flex;
          gap: 14px;
          flex-wrap: wrap;
          justify-content: flex-end;
}

.nav__link{
          color: var(--muted);
          text-decoration: none;
          padding: 10px 12px;
          border-radius: 12px;
          border: 1px solid transparent;
          background: transparent;
          transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.nav__link:hover{
          color: var(--text);
          border-color: var(--border);
          background: var(--surface);
}

.section{
          padding-top: 26px;
}

.h1{
          font-size: clamp(28px, 4vw, 44px);
          line-height: 1.08;
          margin: 0 0 10px 0;
          letter-spacing: -0.02em;
}

.h2{
          font-size: clamp(18px, 2.2vw, 22px);
          margin: 0 0 14px 0;
          letter-spacing: -0.01em;
          opacity: 0.96;
}

.lead{
          margin: 0 0 18px 0;
          color: var(--muted);
          max-width: 70ch;
          line-height: 1.55;
}

.card{
          padding: 18px 18px;
          border-radius: var(--radius);
          border: 1px solid var(--border);
          background: linear-gradient(180deg, var(--surface), transparent);
          box-shadow: var(--shadow);
}

.label{
          margin: 0 0 8px 0;
          font-size: 13px;
          letter-spacing: 0.06em;
          text-transform: uppercase;
          color: var(--muted);
}

.status{
          margin: 0;
          font-size: 18px;
          line-height: 1.4;
}

.actions{
          display: flex;
          flex-wrap: wrap;
          gap: 12px;
          align-items: center;
}

.btn{
          appearance: none;
          background: var(--surface);
          color: var(--text);
          border-radius: 99px;
          padding: 12px 14px;
          font-weight: 650;
          cursor: pointer;
          transition: transform 120ms ease, background 140ms ease, border-color 140ms ease;
}

.btn:hover{
          background: var(--surface-2);
          transform: translateY(-1px);
}

.btn:active{
          transform: translateY(0);
}

.btn--primary{
          background: linear-gradient(145deg, rgba(124,92,255,0.92), rgba(0,209,178,0.72));
          border-color: rgba(255,255,255,0.12);
}

.hint{
          margin: 14px 0 0 0;
          color: var(--muted);
          line-height: 1.55;
}

.footer{
          display: flex;
          gap: 14px;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
}

.muted{
          color: var(--muted);
}

@media (max-width: 1024px){
          :root{
                    --gutter: 20px;
          }

          .header-inner{
                    padding-left: 20px;
                    padding-right: 20px;
          }
}

@media (max-width: 760px){
          .nav{
                    display: none;
          }

          .header-inner{
                    gap: 16px;
          }

          .hero{
                    padding: 60px 20px;
          }

          .hero-title{
                    font-size: 38px;
          }

          .hero-subtitle{
                    font-size: 17px;
          }

          .badge-link{
                    background: transparent;
                    border: none;
                    padding: 0;
                    gap: 0;
          }

          .badge-text{
                    display: none;
          }

          .badge-arrow{
                    display: none;
          }

          .prizes-title{
                    font-size: 36px;
                    animation: none;
          }

          .prizes-subtitle{
                    font-size: 15px;
                    animation: none;
          }

          .preview-slots{
                    margin-bottom: 20px;
          }

          .slot-wrapper{
                    max-width: 100%;
                    padding: 0;
          }

          .slot-items{
                    min-height: 140px;
          }

          .slot-item{
                    width: 120px;
                    min-height: 140px;
                    margin-right: 10px;
                    padding: 10px 6px;
          }

          .slot-item img{
                    max-height: 70px;
          }

          .slot-item-name{
                    font-size: 10px;
                    margin-top: 10px;
          }

          .slot-arrow{
                    top: -35px;
                    width: 32px;
                    height: 32px;
          }

          .slot-arrow img{
                    width: 32px;
                    height: 32px;
          }

          .case-actions{
                    flex-direction: column;
                    gap: 12px;
          }

          .case-btn{
                    width: 100%;
                    justify-content: center;
          }

          .contents-list{
                    gap: 8px;
          }

          .content-item{
                    padding: 10px 12px;
                    grid-template-columns: 50px 1fr 100px auto;
                    column-gap: 15px;
                    row-gap: 0;
          }

          .content-image{
                    width: 50px;
                    height: 50px;
          }

          .content-name{
                    font-size: 14px;
          }

          .content-time{
                    font-size: 11px;
                    gap: 4px;
          }

          .content-time svg{
                    width: 12px;
                    height: 12px;
          }

          .content-id{
                    font-size: 10px;
          }

          .case-opening{
                    animation: none !important;
          }

          .case-contents{
                    animation: none !important;
          }

          .prizes-section .scroll-animate{
                    opacity: 0;
                    transform: translateY(30px);
          }

          .prizes-section .scroll-animate.animated{
                    opacity: 1;
                    transform: translateY(0);
          }

          .faq-title{
                    font-size: 36px;
                    animation: none;
          }

          .faq-subtitle{
                    font-size: 15px;
                    animation: none;
          }

          .faq-question{
                    padding: 20px 24px;
                    font-size: 16px;
          }

          .faq-answer{
                    padding: 0 24px;
          }

          .faq-item.active .faq-answer{
                    padding: 0 24px 20px 24px;
          }

          .faq-item{
                    animation: none !important;
          }

          .faq-section .scroll-animate{
                    opacity: 0;
                    transform: translateY(30px);
          }

          .faq-section .scroll-animate.animated{
                    opacity: 1;
                    transform: translateY(0);
          }

}

.snowflake{
          position: fixed;
          top: -80px;
          color: #ffffff !important;
          font-size: 1em;
          pointer-events: none;
          z-index: 1;
          animation: fall linear;
          user-select: none;
          filter: brightness(2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
          text-shadow: 
                    0 0 8px rgba(255, 255, 255, 0.8),
                    0 0 16px rgba(255, 255, 255, 0.5),
                    0 0 24px rgba(255, 255, 255, 0.3);
}

@keyframes fall{
          0%{
                    transform: translateY(0) rotate(0deg);
                    opacity: 1;
          }
          100%{
                    transform: translateY(100vh) rotate(360deg);
                    opacity: 0.3;
          }
}

@media (prefers-reduced-motion: reduce){
          *{
                    transition: none !important;
          }

          .snowflake{
                    animation: none !important;
                    display: none;
          }
}

.modal-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.62);
          z-index: 9999;
          display: flex;
          align-items: flex-end;
          justify-content: center;
          opacity: 0;
          visibility: hidden;
          transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.show {
          opacity: 1;
          visibility: visible;
}

.modal-content {
          position: relative;
          background: rgba(18, 22, 22, 0.92);
          border: 1px solid rgba(255,255,255,0.10);
          border-radius: 20px 20px 0 0;
          padding: 16px 18px 18px;
          max-width: 520px;
          width: 100%;
          text-align: left;
          transform: translateY(100%);
          transition: transform 0.45s ease;
          box-shadow: 0 -18px 50px rgba(0,0,0,0.55);
          padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.modal-overlay.show .modal-content {
          transform: translateY(0);
}

.modal-handle{
          width: 44px;
          height: 5px;
          border-radius: 999px;
          background: rgba(255,255,255,0.18);
          margin: 6px auto 10px;
          cursor: pointer;
          transition: background 180ms ease;
}

.modal-handle:hover{
          background: rgba(255,255,255,0.25);
}

.modal-header{
          padding: 6px 2px 12px;
}

.modal-title {
          font-family: var(--font);
          font-size: 20px;
          font-weight: 700;
          color: rgba(255,255,255,0.95);
          margin: 0;
          letter-spacing: 0.01em;
}

.modal-subtitle{
          margin: 8px 0 0;
          font-size: 14px;
          line-height: 1.5;
          color: rgba(255,255,255,0.68);
}

.modal-prize {
          margin: 10px 0 14px 0;
}

.modal-prize-card{
          display: grid;
          grid-template-columns: 88px 1fr;
          gap: 14px;
          align-items: center;
          padding: 14px;
          border-radius: 16px;
          border: 1px solid rgba(255,255,255,0.10);
          background: rgba(255,255,255,0.06);
}

.modal-prize img {
          width: 88px;
          height: 88px;
          object-fit: contain;
          border-radius: 14px;
          background: rgba(0,0,0,0.18);
          padding: 8px;
          display: block;
}

.modal-prize-name {
          font-family: var(--font);
          font-size: 16px;
          font-weight: 700;
          color: rgba(255,255,255,0.92);
          margin: 0;
          letter-spacing: 0.01em;
}

.modal-btn {
          background: #FED813;
          color: #111313;
          border: 1px solid rgba(0, 0, 0, 0.3);
          border-radius: 12px;
          padding: 14px 16px;
          font-family: var(--font);
          font-size: 15px;
          font-weight: 600;
          letter-spacing: 0.01em;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          width: 100%;
          transition: transform 120ms ease, filter 140ms ease, box-shadow 140ms ease;
          box-shadow: 0 8px 20px rgba(0,0,0,0.35),
                    inset 0 1px 0 rgba(255,255,255,0.5),
                    inset 0 -1px 0 rgba(0,0,0,0.12);
}

.modal-btn:hover {
          transform: translateY(-1px);
          filter: saturate(1.05) brightness(1.03);
          box-shadow: 0 10px 24px rgba(0,0,0,0.4),
                    inset 0 1px 0 rgba(255,255,255,0.55),
                    inset 0 -1px 0 rgba(0,0,0,0.14);
}

.modal-btn:active{
          transform: translateY(0);
}

.modal-btn .tg-icon{
          width: 23px;
          height: 20px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          color: #111313;
}

@media (max-width: 760px) {
          .modal-content {
                    padding: 14px 16px 16px;
          }
          
          .modal-title {
                    font-size: 18px;
          }
          
          .modal-prize-card{
                    grid-template-columns: 78px 1fr;
                    padding: 12px;
          }
          
          .modal-prize-name {
                    font-size: 15px;
          }
          
          .modal-btn {
                    font-size: 15px;
                    padding: 14px 14px;
          }
}

.unreceived-banner {
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: 9998;
          padding: 12px 16px;
          padding-bottom: calc(12px + env(safe-area-inset-bottom));
          background: #FED813;
          border-top: 1px solid rgba(0, 0, 0, 0.2);
          box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
          transform: translateY(100%);
          transition: transform 0.3s ease;
          opacity: 0;
          visibility: hidden;
}

.unreceived-banner.show {
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
}

.unreceived-banner-content {
          max-width: 900px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 16px;
}

.unreceived-banner-text {
          font-family: var(--font);
          font-size: 15px;
          font-weight: 600;
          color: #111313;
          letter-spacing: 0.01em;
}

.unreceived-banner-btn {
          background: rgba(0, 0, 0, 0.15);
          color: #111313;
          border: 1px solid rgba(0, 0, 0, 0.2);
          border-radius: 8px;
          padding: 8px 16px;
          font-family: var(--font);
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: background 120ms ease, transform 120ms ease;
          white-space: nowrap;
}

.unreceived-banner-btn:hover {
          background: rgba(0, 0, 0, 0.22);
          transform: translateY(-1px);
}

.unreceived-banner-btn:active {
          transform: translateY(0);
}

@media (max-width: 760px) {
          .unreceived-banner {
                    padding: 10px 14px;
                    padding-bottom: calc(10px + env(safe-area-inset-bottom));
          }
          
          .unreceived-banner-text {
                    font-size: 14px;
          }
          
          .unreceived-banner-btn {
                    padding: 7px 14px;
                    font-size: 13px;
          }
}

