@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #fff;
    color: #0f172a;
}

.top {
    padding: 20px 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.top img {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    flex-shrink: 0;
    object-fit: cover;
}

.top h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .2px;
}

.top p {
    font-size: 13px;
    color: #118EEA !important;
    margin-top: 4px;
    font-weight: 600;
}

.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.item {
    flex: 1;
    text-align: center;
}

.item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.item p {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.item i {
    font-size: 12px;
}

.item .fa-star {
    color: #facc15;
}

.item .fa-download {
    color: #118EEA !important;
}

.divider {
    width: 2px;
    height: 28px;
    background: #e2e8f0;
}

.action {
    padding: 16px;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 14px;
    background: #118EEA !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-download i {
    font-size: 14px;
    color: #fff !important;
}

.btn-download:active {
    transform: scale(.98);
}

.banner {
    padding: 16px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.banner img {
    width: 140px;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
    cursor: pointer;
}

.preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.preview img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 16px;
}

body.lock {
    overflow: hidden;
}

.about-tags {
    margin: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-tags span {
    font-size: 12px;
    font-weight: 500;
    color: black;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
    width: auto;
    white-space: nowrap;
    align-self: flex-start;
    transition: all 0.2s ease;
    cursor: default;
}

.about-tags span:hover {
    background: #e2e8f0;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
}

.review-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
}

.user-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.user-name {
    font-weight: 600;
    color: #111;
}

.stars {
    display: flex;
}

.star {
    font-size: 18px;
    color: #ccc;
    margin-left: 2px;
    position: relative;
}

.star.full {
    color: #FFD700;
}

.star.half::before {
    content: '\2605';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
}

.review-text {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.support, .security, .about {
    padding: 16px;
}

.support h2, .security h2, .about h2 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.support-box, .security-box, .about-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.support-box:hover, .security-box:hover, .about-box:hover {
    background: #e2e8f0;
}

.support-box p, .security-box p, .about-box p {
    font-size: 14px;
    color: #1E1B4B;
    margin: 0;
}

.support-popup, .security-popup, .about-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.support-content, .security-content, .about-content {
    background: #fff;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    padding: 20px;
}

.support-header, .security-header, .about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.support-header h3, .security-header h3, .about-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;    
    margin: 0;
}

.support-header i, .security-header i, .about-header i {
    font-size: 18px;
    cursor: pointer;
}

.support-text p, .security-text p, .about-text p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #334155;
}

.support-text a {
    color: #1E1B4B;
    text-decoration: underline;
}

.tap-bubble {
    position: fixed;
    width: 14px;
    height: 14px;
    background: #118EEA;
    border-radius: 50%;
    pointer-events: none;
    animation: fadeBubble 1s ease-out forwards;
    box-shadow: 0 0 12px #1976d2;
}

@keyframes fadeBubble {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }
    60% {
        transform: scale(1.3);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}