body,html {
    padding:0;
    margin:0;
    height:100%;
    width:100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

#mainContainer {
    z-index: 900;
    position: fixed;
}

#adContainer {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

#div_iframe_game {
    width: 100%;
}

#iframe_game {
    width: 100%;
    height: 100%;
}

#game_banner {
    width: 100%;
    justify-content: center;
    /*display: flex;
    position: fixed;*/
}

#div_afc_Content{
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 999;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    position: absolute;
    top: 0px;
    left: 0px;
}

@media screen and (orientation:portrait) {
    #game-info{
        font-family: 'Roboto', Roboto-Medium;
        font-size: 17px;
        position: relative;
        display: block;
        z-index: 999;
        color: #e0e0e0;
        padding: 2rem;
        top: 30px;
        margin: 0 auto;
        text-align: center;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
}

@media screen and (orientation:landscape) {
    #game-info{
        display: none;
    }
}

#button_afc_Content{
    position: relative;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    width:100%;
    border:none;
    display: block;
    color: white;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
    transition: all 0.3s ease;
}

#button_afc_Content:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.6);
}

#button_afc_Content:active {
    transform: translateY(0);
}

#afc_play{
    font-family: 'Roboto', Roboto-Medium;
    font-size: 5vw;
    line-height: 8vw;
    position: relative;
    display: block;
    z-index: 9;
    font-weight: 700;
}

.btn_afc_play_span{
    font-family: 'Roboto', Roboto-Medium;
    font-size: 6vw;
    position: relative;
    display: block;
    z-index: 9;
    font-weight: 700;
}

#afc_progress{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    opacity: 0.8;
}

#afc_section{
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    text-align: center;
    display: block;
}

#div_afc_adContainer{
    overflow: hidden;
    display: block;
}

.img_tap_game {
    opacity: 0.1;
    overflow: hidden;

    /* IE10、Firefox and Opera，IE9以及更早的版本不支持 */
    animation-name: breath;
    animation-duration: 1200ms;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

    /* Safari and Chrome */
    -webkit-animation-name: breath;
    -webkit-animation-duration: 1200ms;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
}

@keyframes breath {
    from { opacity: 0.1; }
    50%  { opacity: 1; }
    to   { opacity: 0.1; }
}

@-webkit-keyframes breath {
    from { opacity: 0.1; }
    50%  { opacity: 1; }
    to   { opacity: 0.1; }
}
