* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background: #f5f6f8;
    color: #222;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Header */
.header {
    background: #1c1e24;
    color: #fff;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.header nav a {
    color: #ccc;
    margin-left: 20px;
    text-decoration: none;
}

.header nav a:hover {
    color: #fff;
}

/* App card */
.app-card {
    background: #ffffffd1;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.app-info {
    display: flex;
    gap: 30px;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
}

.app-meta h1 {
    font-size: 32px;
}

.developer {
    color: #777;
    margin: 5px 0 15px;
}

.badges span {
    display: inline-block;
    background: #eef0f3;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 13px;
}

.download-btn {
    display: inline-block;
    margin-top: 20px;
    background: #00a651;
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.download-btn:hover {
    background: #008e45;
}

.version {
    margin-top: 10px;
    font-size: 15px;
    color: #666;
}

/* Content */
.content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.content h2 {
    margin-bottom: 10px;
    margin-top: 20px;
}

.content p {
    line-height: 1.6;
    color: #444;
    max-width: 750px;
}

.content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.content li {
    margin-bottom: 8px;
}

/* Specs table */
.specs {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.specs td {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.specs td:first-child {
    color: #777;
    width: 200px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 14px;
}
.img-logo {
    width: 30px;
    vertical-align: bottom;
    margin: 0px 3px;
}
a.download-btn.blue {
    background: #228ce6;
    font-weight: 300;
    padding: 12px 8px 8px 16px;
    text-transform: uppercase;
    font-size: 16px;
    margin-left: 4px;
}
i.fa.fa-get-pocket {
    color: #aaa8a8;
}
img.app-logo {
    width: 32px;
    background: #fff;
    border-radius: 5px;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: -2px;
}
i.fa.fa-arrow-circle-down {
    font-size: 20px;
    vertical-align: bottom;
}
a.report {
    color: #5894c1;
    text-decoration: none;
}
.background {
    background: #fff;
    background-image: url(img/background/background.png);
    background-repeat: no-repeat;
    background-position-x: 590px;
    background-position-y: -20px;
    border-radius: 12px;
}
img.screen {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}
div#screenshot {
    padding-top: 20px;
}
h5.align {
    text-align: center;
    border-bottom: 1px solid #d8d4d4;
    padding-bottom: 10px;
    color: #2a2a2a;
    font-weight: 500;
    font-size: 17px;
    margin: 0px 30px;
}
a.go-index {
    color: #ffffffc9;
    text-decoration: none;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
}
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
.screen {
    cursor: zoom-in;
    transition: 0.3s;
}
.screen:hover {
    opacity: 0.8;
}
p.desc {
    background: #f7f7f7;
    padding: 8px 14px;
    border-radius: 12px;
}
h2.normal_top {
    margin-top: 0px !important;
}