* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
}

.hdr3x {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav8q {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo5m {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navmenu7p {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navmenu7p a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.navmenu7p a:hover {
    opacity: 0.8;
}

.menubtn4k {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero2v {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.appinfo6x {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: linear-gradient(135deg, #ffeef8 0%, #f3e7f9 100%);
}

.appicon8w {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.appmeta9j {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apptitle1n {
    font-size: 2rem;
    font-weight: bold;
    color: #764ba2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags3f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag7y {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.appdesc4h {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.dlbtn2c {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 1rem;
}

.dlbtn2c:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.content5t {
    padding: 3rem 2.5rem;
}

.section9b {
    margin-bottom: 3rem;
}

.section9b h2 {
    font-size: 1.8rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #667eea;
}

.section9b p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.section9b ul {
    list-style: none;
    padding-left: 0;
}

.section9b li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.section9b li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #764ba2;
}

.gameimg6r {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.gameimg6r:hover {
    transform: scale(1.02);
}

.sysreq8m {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #764ba2;
}

.sysreq8m h3 {
    color: #764ba2;
    margin-bottom: 1rem;
}

.sysreq8m p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.guides1x {
    background: #fff;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.guides1x h2 {
    font-size: 1.8rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
}

.guidelist3z {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.guideitem4p {
    background: linear-gradient(135deg, #ffeef8, #f3e7f9);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.guideitem4p:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(118, 75, 162, 0.3);
}

.guideitem4p h3 {
    color: #764ba2;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.guideitem4p p {
    color: #666;
    font-size: 0.95rem;
}

.news2w {
    background: #fff;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news2w h2 {
    font-size: 1.8rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
}

.newslist5k {
    display: grid;
    gap: 1.5rem;
}

.newsitem7d {
    background: linear-gradient(135deg, #f5f7fa, #e8eaf6);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border-left: 4px solid #667eea;
}

.newsitem7d:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(102, 126, 234, 0.2);
}

.newsitem7d h3 {
    color: #764ba2;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.newsitem7d p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.newsdate8v {
    color: #999;
    font-size: 0.85rem;
}

.links9h {
    background: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.links9h h2 {
    font-size: 1.5rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.linklist6a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.linklist6a a {
    color: #667eea;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: #f5f7fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.linklist6a a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
}

.footer3w {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer3w p {
    margin: 0.5rem 0;
}

.footer3w a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navmenu7p {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.3s;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    }

    .navmenu7p.active {
        right: 0;
    }

    .menubtn4k {
        display: block;
    }

    .appinfo6x {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .apptitle1n {
        font-size: 1.5rem;
        justify-content: center;
    }

    .tags3f {
        justify-content: center;
    }

    .guidelist3z {
        grid-template-columns: 1fr;
    }

    .hero2v, .guides1x, .news2w, .links9h {
        margin: 1rem;
    }

    .content5t {
        padding: 2rem 1.5rem;
    }
}

