@import url('https://fonts.googleapis.com/css2?family=Reggae+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Signika:700,300,600');
@import url('https://fonts.googleapis.com/css?family=Lato');

/* 基本布局设置 */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;    
    display: flex;    
    justify-content: center;
    align-items: flex-start;
    background-color: #1A1E23;    
    /* background-color: #F7EED6; */
    /* background-color: #171717; */
    /* position: relative;                 */
    /* background:url(../img/screenshot3.jpg) repeat-x; */
    
    /* background-image: linear-gradient(to bottom, #F7EED6 0%, #F7EED6 100%); */
}

/* 主布局容器 */
.main-container {
    width: 800px; 
    margin-top: 20px;
    min-height: 95vh;
    padding: 20px;
    /* background-color: #fff;    
    box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;            
}

/* 标头样式及布局 */
.header {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center; /* 水平居中 */
    align-items: center;
    background: linear-gradient(90deg, rgba(42, 80, 62, .25) -3.62%, rgba(14, 44, 30, .25) 102.49%);        
    backdrop-filter: blur(16px);


    


    /* background-color: #27bb33; */
    /* background-color: rgb(72, 172, 129); */
    padding: 20px;
    border-radius: 10px;
    color: white;
}

/* 左侧图标和应用名称块 */
.app-info {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.app-info img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.app-name {
    font-size: 1.2em;    
    font-family: "Roboto", cursive;  
    color: white;
    white-space: nowrap; /* 防止换行 */    
}        

/******************************************************************/
/* 右侧欢迎文本 */
.welcome-text .string {

    /* text-transform: uppercase;
    animation: stroke 2s forwards;
    letter-spacing: 0px;
    font-size: 2.3rem;        
    font-family: 'Reggae One', cursive;        */
    
    
    /* text-transform: uppercase; */
    text-align: center; 
    letter-spacing: -6px;
    font: bold 3.5vw/1.5 'Signika', sans-serif;
}

@keyframes stroke {
    0% {
        fill: rgba(72, 138, 20, 0);
        stroke: rgb(255, 255, 255);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 0.8;
    }
    50% {
        fill: rgba(72, 138, 20, 0);
        stroke: rgba(255, 255, 255, 1);
        stroke-width: 1.2;
    }
    70% {
        fill: rgba(72, 138, 20, 0);
        stroke: rgba(255, 255, 255, 1);
        stroke-width: 1.5;
    }
    90%,
    100% {
        fill: rgba(255, 255, 255, 1);
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

/******************************************************************/


.hengxiang {
    padding: 5px;    
}

.hengxiang:not(:last-child) {
    border-bottom: 1px dashed #9694949d;
}

.about {
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(42, 80, 62, .25) -3.62%, rgba(14, 44, 30, .25) 102.49%);        
}       

.about p {
    text-align: left;
    color: #ffffff;    
    line-height: 1.6;
    flex-grow: 1;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;        
    font-family: "Roboto", cursive;    
    font-size: 1.3em;        
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.games {
    /* margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(42, 80, 62, .25) -3.62%, rgba(14, 44, 30, .25) 102.49%);         */
    width: 100%;
    text-align: left;    
    color: #ffffff;    
    font-family: "Roboto", cursive;    
    font-size: 1.3em;       
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;        
    line-height: 1.6;
    flex-grow: 1;
}       

.games .subgame {
    width: 100%;
    margin-top: 20px;
    
    display: flex;
    align-items:center;
    /* background:blue; */
}

.games .subgame .appicon {    
    width: 80px; 
    height: 80px;       
    margin-left: 20px; 
    margin-right: 20px;
    /* transition: transform 0.3s ease; */
}

/* .games .subgame .appicon:hover {    
    transform: scale(1.1);
} */

.games .subgame .storebtn {    
    margin-right: -1000%;
    display: flex;
    flex-direction:column;
    /* background:red;     */
}

.games .subgame .storebtn img {    
    width: 100px;
    height: auto;
}


.games .subgamedesc {
    display: flex;
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;
}

.games .subgamedesc p {
    margin-left: 20px;    
    /* margin-top: 10px; */
}



/* 展示图样式 */
.image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
}

.auto-image-container {            
    /* border-radius: 10px; */
    margin-top: 2%;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(42, 80, 62, .25) -3.62%, rgba(14, 44, 30, .25) 102.49%);        
    width: 100%;
    height: 700px;    

    display: flex;
    flex-direction: column;    
}

.playonline-container {
    margin-top: 12%;
    width: 100%;
    height: 350px;    
    border-radius: 20px;
    /* background-color: #080808; */
    background: linear-gradient(90deg, rgba(42, 80, 62, .25) -3.62%, rgba(14, 44, 30, .25) 102.49%);   
}

.video-container {
    background-color: #f3f3f3;    
    /* padding: 20px; */
    border-radius: 10px;
    margin-bottom: 60px;
    padding-top: 20px;
    padding-right: 20px;
    width: 800px;
    height: 400px;
    text-align: center;
}

.video-container iframe {
    max-width: 100%;
    width: 800px;
    height: 400px;
}

.footer {
    text-align: center;
    color: #fff;
    /* background-color: #343A40; */
    padding: 20px;
    border-radius: 10px;
    margin-top: 1%;
    font-size: 1.1em;
    font-family: "Roboto", cursive;  
}

/* 列表项样式 */
.footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer ul li {
    margin: 0 10px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 5px;
}

.footer a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {
    .footer {
        margin-top: 5%;
    }
    .auto-image-container {
        height: 600px;
    }
    .games .subgame img {        
        width: 80px; 
        height: 80px;
    }
}
  




