*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: black;
}
.background{
    position: relative;
    width: 800px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.log{
    position: absolute;
    top: 4.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.log img{
    width: 100%;
    height: 100%;
    max-width: 350px;
    object-fit: contain;
}
.bannerlogo{
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bannerlogo img{
    width: 100%;
    height: 100%;
    max-width: 170px;
    object-fit: contain;
}
.bannerlogo img:last-child{
    max-width: 100px;
}
.text{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}
.text h1{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.text h1 .line1{
    color: white;
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}
.text h1 .line2{
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 28px;
    text-transform: uppercase;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.9)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
    letter-spacing: 1px;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}
.text h1 .line3{
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 36px;
    text-transform: uppercase;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.9)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
    letter-spacing: 1px;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}
.bannerBottom{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bannerBottom img{
    width: 100%;
    height: 100%;
    max-width: 180px;
    object-fit: contain;
}
.bannerBottom img:first-child{
    max-width: 150px;
}
.spin{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spin img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    transform-origin: center center;
}
.playButton{
    cursor: pointer;
}
.playButton img{
    transition: transform 0.2s ease;
}
.playButton{
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 150px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.playButton img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: zoomInOut 2s ease-in-out infinite;
}
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.popout-win{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}
.popout-win.show{
    display: flex;
}
.popout-win .popout-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 1001;
    position: relative;
}
.popout-win .text{
    position: relative;
    text-align: center;
    width: 100%;
}
.popout-win .text h1{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0;
}
.popout-win .text .line1{
    color: white;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}
.popout-win .text .line2{
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 56px;
    text-transform: uppercase;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.9)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
    letter-spacing: 2px;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}
.popout-win button{
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.popout-win button:hover{
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.popout-win button:active{
    transform: scale(0.98);
}
@media (max-width: 768px){
    .text h1 .line1{
        font-size: 20px;
    }
    .text h1 .line2{
        font-size: 20px;
    }
    .text h1 .line3{
        font-size: 24px;
    }
    .bannerBottom img:first-child{
        max-width: 120px;
    }
    .spin {
        top: 55%;
    }
    .playButton{
        top: 80%;
    }
}