body {
    margin: 0;
    padding: 2px;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* LIST */
.app-list {
    display: flex;
    flex-direction: column;
     margin-top: 70px; /* adjust to your header height */
}

/* ROW */
.app-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 5px;
    margin-bottom: 8px;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    max-width: 1000px;
    width:  1000px;
}


/* ICON */
.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    flex-shrink: 0;
}

/* TEXT */
.app-text {
    display: flex;
    flex-direction: column;
}

.app-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.app-short-desc {
    margin-top: 4px;
    font-size: 13px;
    color: #666;
}

/* PAGE */
.details {
    max-width: 1000px;
    margin: auto;
    padding: 10px;
    background: #f5f5f5;
    margin-top: 70px; /* adjust to your header height */
}


/* HEADER */
.app-header {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fff;
    padding: 14px;
    border-radius: 14px;
}

/* ICON */
.icon-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* INFO */
.app-info h1 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
}

/* INSTALL BUTTON */
.install-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    background: #1a73e8;
    color: #fff;
    border-radius: 18px;
    text-decoration: none;
    font-size: 14px;
}

/* DESCRIPTIONS */
.short-desc {
    margin: 12px 4px;
    color: #555;
    font-size: 16px;
}

/* SCREENSHOTS */
.screens {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.screens img {
    height: 180px;
    border-radius: 12px;
    flex-shrink: 0;
}

/* LONG DESC */
.long-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* DESKTOP IMPROVEMENT */
@media (min-width: 768px) {
    .icon-large {
        width: 120px;
        height: 120px;
    }

    .app-info h1 {
        font-size: 26px;
    }
}



.section-title {
    margin: 18px 6px 10px;
    font-size: 18px;
}

/* RELATED LIST */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ROW */
.related-row {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
}

/* ICON */
.related-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* TEXT */
.related-title {
    font-size: 15px;
    font-weight: 600;
}

.related-desc {
    font-size: 13px;
    color: #666;
}





.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1000px;
    width: 100%;
    margin:auto;
    background-color: #333;
    color: white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 8px 8px; /* optional */
}



.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2px 0px 25px 0px;
    max-width: 1000px;
    margin: 20px auto;
}

.footer a {
    text-decoration: none;
    color: #ff6347;
}

.footer a:hover {
    text-decoration: underline;
}

/* MENU BAR */
.menu {
    display: flex;
    gap: 8px; 
    padding: 10px;
    background: #024363;
    border-bottom: 1px solid #eee;
    overflow-x: auto;      /* enable horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;
}


/* MENU ITEM */
.menu-item {
    flex-shrink: 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: #F5F5F5;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

/* ACTIVE / HOVER */
.menu-item:hover {
    background: #09CFD6;
    color: #fff;
}


