  * {
        border: 0;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

@keyframes breathe {
    0%, 100% {
        background: linear-gradient(180deg, rgba(210,192,137,0.2) 16%, rgba(204,167,103,0.2) 53%, rgba(213,182,127,0.2) 85%);
        -webkit-background-clip: text; /* 将背景色限制在文本区域内 */
        -webkit-text-fill-color: transparent; /* 使文本颜色变为透明，展示背景渐变 */
        text-shadow: 0 0 2px #D2C089;
        filter: brightness(20%);
    }
    30% {
        background: linear-gradient(180deg, rgba(210,192,137,0.5) 16%, rgba(204,167,103,0.5) 53%, rgba(213,182,127,0.5) 85%);
        -webkit-background-clip: text; /* 将背景色限制在文本区域内 */
        -webkit-text-fill-color: transparent; /* 使文本颜色变为透明，展示背景渐变 */
        text-shadow: 0 0 13px #D2C089;
        filter: brightness(50%);
    }
    60% {
        background: linear-gradient(180deg, rgba(210,192,137,0.7) 16%, rgba(204,167,103,0.7) 53%, rgba(213,182,127,7) 85%);
        -webkit-background-clip: text; /* 将背景色限制在文本区域内 */
        -webkit-text-fill-color: transparent; /* 使文本颜色变为透明，展示背景渐变 */
        text-shadow: 0 0 20px #D2C089;
        filter: brightness(80%);
    }
    80% {
        background: linear-gradient(180deg, rgba(210,192,137,1) 16%, rgba(204,167,103,1) 53%, rgba(213,182,127,1) 85%);
        -webkit-background-clip: text; /* 将背景色限制在文本区域内 */
        -webkit-text-fill-color: transparent; /* 使文本颜色变为透明，展示背景渐变 */
        text-shadow: 0 0 25px #D2C089;
        filter: brightness(110%);
    }
}







    @keyframes flame {
        0% {
            background-position: left;
        }
        100% {
            background-position: right;
        }
    }
    @keyframes numberAnimation {
      0% { opacity: 1; transform: translateY(0); }
      50% { opacity: 1; transform: translateY(-10px); }
      100% { opacity: 0; transform: translateY(-20px); }
    }
    
    .pool .increseNumber h1 {
      font-size: 60px;
      font-weight: bold;
      font-family: 'Playfair Display', serif;
      background: linear-gradient(180deg, rgba(210,192,137,1) 16%, rgba(204,167,103,0.927608543417367) 53%, rgba(213,182,127,0.927608543417367) 85%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
         animation: breathe 2s infinite; 
        filter: brightness(110%);
    }
    .pool .increseNumber #onesDigit {
        margin-left: -20px;
    }
    .increseNumber {
      height: 40vh;
    }


    /* 定义个位数元素的样式 */
    #onesDigit {
      position: relative;
      animation: numberAnimation 1s infinite;
    }
    section.pool {
        position: relative;
        padding: 100px 50px 20px 50px;
        background: url(../img/live_event/1920x1080%20Pool%20Update.gif)top center;
        height: 100vh;
        z-index: 0;
        background-size: cover;
        display: flex;
  flex-direction: column;
  justify-content: flex-end;
    }
    :root {
        --hue: 223;
        --bg: hsl(var(--hue),90%,10%);
        --fg: hsl(var(--hue),90%,90%);
        --fill: url(../img/live_event/579c27d8dff3f_610.jpg);
        --fill-animation: flame 3s infinite linear;
        --trans-dur: 0.3s;
        font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
        z-index: 1;
    }
    .yr-progress__bar-fill:before {
        background: var(--fill);
        animation: var(--fill-animation);
        width: 100%;
        height: 100%;
    }
    
    .yr-progress {
        margin: auto;
        padding: 6em 0 0 0;
        text-align: center;
        width: 100%;
    }
    .yr-progress__bar {
        background-color: hsla(0,0%,100%,0.05);
        border-radius: 1em;
        box-shadow:
            0 0.125em 0.125em hsla(0,0%,100%,0.2) inset,
            0 -0.125em 0.125em hsla(0,0%,100%,0.3) inset;
        margin: 0 0.75em;
        padding: 0.25em;
        position: relative;
        max-width: 27em;
        width: 100%;
        height: 2em;
    }
    .yr-progress__bar-fill-wrap,
    .yr-progress__bar-fill {
        overflow: hidden;
    }
    .yr-progress__bar-fill-wrap {
        border-radius: 0.75em;
        position: absolute;
        inset: 0.25em;
        z-index: -1;
    }

    .yr-progress__bar-fill-wrap--glow {
        border-radius: 1.25em;
        filter: blur(8px);
        inset: -0.25em;
        opacity: 0.7;
    }
    .yr-progress__bar-fill {
        width: 100%;
        height: 100%;
        transform: translate3d(-100%,0,0);
        transition: transform var(--trans-dur) ease-in-out;
    }
    .yr-progress__bar:before,
    .yr-progress__bar-fill:before {
        content: "";
        display: block;
        position: absolute;
    }
    .yr-progress__bar:before {
        border-radius: 0.6em;
        box-shadow:
            0 0.4em 0 hsla(0,0%,100%,0.6) inset,
            0 -0.25em 0 hsla(0,0%,100%,0.5) inset;
        filter: blur(2px);
        top: 0.25em;
        left: 0.25em;
        width: calc(100% - 0.5em);
        height: 1.5em;
    }
    .yr-progress__bar-fill:before {
        background-color: var(--fill);
        width: 100%;
        height: 100%;
    }
    .yr-progress__bar-fill-sr {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
    }
    .yr-progress__bar-divs {
        display: flex;
        position: absolute;
        top: 0;
        left: 0.25em;
        width: calc(100% - 0.5em);
        height: 100%;
    }
    .yr-progress__bar-div {
        box-shadow: -3px 0 0 hsl(51, 100%, 50%, 0.7) inset, 2px 0 0 hsl(51, 100%, 40%, 0.7) inset;
        height: 100%;
        width:25%;
        font-size: 16px;
        color: #fff;
        position: relative;
    }
    .yr-progress__bar-div-number {
        position: absolute;
        top: -2em;
        left: 60%;
        transform: translateX(-130%);
        background: linear-gradient(180deg, rgba(210,192,137,1) 16%, rgba(204,167,103,0.927608543417367) 53%, rgba(213,182,127,0.927608543417367) 85%);
         -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #fff;
        font-weight: bold;
    }
        
    .yr-progress__bar-div-number2 {
        position: absolute;
        bottom: -2em!important;
        left: 60%;
        transform: translateX(-130%);
        background: linear-gradient(180deg, rgba(210,192,137,1) 16%, rgba(204,167,103,0.927608543417367) 53%, rgba(213,182,127,0.927608543417367) 85%);
         -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #fff;
        font-weight: bold;
    }
    .yr-progress__bar-div:first-child {
        box-shadow: -3px 0 0 hsl(51, 100%, 50%, 0.7) inset;
        width:50%;
        
    }
    .yr-progress__bar-div:last-child {
        box-shadow: 2px 0 0 hsl(51, 100%, 40%, 0.7) inset;
    }
    .yr-progress__checkbox {
        margin-right: 0.75em;
    }
    .yr-progress__label {
        display: inline-flex;
        align-items: center;
        margin-bottom: 1.5em;
        -webkit-tap-highlight-color: transparent;
    }
    .yr-progress__number,
    .yr-progress__yr {
        font-size: 25px;
        line-height: 1;
        color:gold;
        background: linear-gradient(to bottom, #ffd700 22%,#ffe44d 24%, #fff7cc 26%, #cfc09f 27%,#fff4b3 78%); 
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #fff;
        font-weight: 700;
    }
    .yr-progress__number {
        font-weight: bold;
        
        margin-bottom: 1.5rem;
        background: linear-gradient(180deg, rgba(207, 192, 159, 1) 32%, rgba(99, 79, 44, 0.93) 38%, rgba(207, 192, 159, 1) 48%, rgba(207, 192, 159, 1) 49%, rgba(255, 236, 179, 1) 52%, rgba(228, 209, 154, 1) 62%, rgba(230, 230, 230, 1) 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
font-family: 'Playfair Display', serif;
    position: relative;
	text-transform: uppercase;	
	font-size: 35px;
	margin: 0;
    }
    .yr-progress__stats {
        border-radius: 0.25em;
        margin: 0 auto 1.5em auto;
        max-width: 15em;
        padding: 0.375em 0;
        transition: background-color var(--trans-dur) linear;
    }
    .yr-progress__stat-summary {
        cursor: pointer;
        font-weight: 700;
        outline: transparent;
    }
    .yr-progress__stat-label {
        color: hsl(var(--hue),90%,70%);
        font-size: 0.75em;
        line-height: 1;
        margin-top: 0.375rem;
    }
    .yr-progress__stat-value small {
        font-size: 0.75em;
    }
    .yr-progress__stats:hover {
        background-color: hsl(var(--hue),90%,20%);
    }
    .yr-progress__wrap {
        display: flex;
        justify-content: left;
        align-items: left;
        margin-bottom: 1.5em;
        align-items: center;
    }
    .fyr-progress__yr {
        text-align: right;
        width: 25px;
    }
    .yr-progress__yr ~ .yr-progress__yr {
        text-align: left;
    }

    /* `:has()` support */
    @supports selector(:has(+ *)) {
        .yr-progress__stats:has(.yr-progress__stat-summary:focus-visible) {
            background-color: hsl(var(--hue),90%,20%);
        }
    }


@media (max-width:768px){
    
    section.pool {
        position: relative;
        padding: 100px 15px 100px 15px;
        background: url(../img/live_event/1125x2436%20Pool%20Update.gif)top center;
        height: 100vh;
        z-index: 0;
        background-size: cover;
         display: flex;
      flex-direction: column;
      justify-content:flex-start;
    }
    .pool .increseNumber h1 {
      font-size: 40px;
    }
    .increseNumber {
        height: 10vh;
    }
    .yr-progress {
        margin: auto;
        padding: 70px 0 10px; 0;
        text-align: center;
        width: 100%;
    }
    .yr-progress__number {
        font-size: 20px;
    }
    .yr-progress__number,
    .yr-progress__yr {
        font-size: 20px;
        line-height: 1;
        color:gold;
        background: linear-gradient(to bottom, #ffd700 22%,#ffe44d 24%, #fff7cc 26%, #cfc09f 27%,#fff4b3 78%); 
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #fff;
        font-weight: 700;
    }
    .pool .increseNumber #onesDigit {
        margin-left: -10px;
    }
    .yr-progress__bar-div-number {
        left: 60%;
    }
        
    .yr-progress__bar-div-number2 {
        left: 60%;
    }
}

@media (min-width:1300px){
    .pool .increseNumber h1 {
      font-size: 80px;
    }
}

@media (min-width:1600px){
    .pool .increseNumber h1 {
      font-size: 100px;
    }
}
