﻿body {
}
/* Remove default paragraph margins in app info */
.app-info p, .app-info span {
    margin: 0.2rem 0; /* smaller vertical spacing */
}

/* Remove extra spacing in Highlights section */
.highlights p {
    margin: 0.2rem 0;
}

/* Optional: reduce line height for compact look */
.app-info, .highlights {
    line-height: 1.3;
}

    /* Make bold labels inline */
    .app-info p b, .highlights p b {
        display: inline-block;
        width: 100px; /* adjust width */
    }

/* Optional: remove spacing in rating stars */
.rating-stars {
    margin-bottom: 0.3rem;
}
/* Base sizes for Desktop (default) */
h1 {
    font-size: 2.5rem;
}
/* 40px approx */
h2 {
    font-size: 2rem;
}
/* 32px */
h3 {
    font-size: 1.75rem;
}
/* 28px */
h4 {
    font-size: 1.5rem;
}
/* 24px */
h5 {
    font-size: 1.25rem;
}
/* 20px */
h6 {
    font-size: 1rem;
}
p {
    font-size: 0.8rem;
}

a {
    font-size: 0.8rem;
}

span {
    font-size: 0.7rem;
}
/* 16px */

/* Tablet: screen width 768px - 1024px */
@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }
    /* 32px */
    h2 {
        font-size: 1.75rem;
    }
    /* 28px */
    h3 {
        font-size: 1.5rem;
    }
    /* 24px */
    h4 {
        font-size: 1.25rem;
    }
    /* 20px */
    h5 {
        font-size: 1.1rem;
    }
    /* 17.5px */
    h6 {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.75rem;
    }

    a {
        font-size: 0.75rem;
    }

    span {
        font-size: 0.65rem;
    }
    /* 15px */
}

/* Mobile: screen width < 768px */
@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }
    /* 28px */
    h2 {
        font-size: 1.5rem;
    }
    /* 24px */
    h3 {
        font-size: 1.25rem;
    }
    /* 20px */
    h4 {
        font-size: 1.1rem;
    }
    /* 17.5px */
    h5 {
        font-size: 1rem;
    }
    /* 16px */
    h6 {
        font-size: 0.9rem;
    }
    p {
        font-size: 0.7rem;
    }
    a {
        font-size: 0.7rem;
    }
    span {
        font-size: 0.6rem;
    }
    /* 14.5px */
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}
body {
    font-family: 'Roboto', sans-serif;
}

.app-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.rating {
    color: #ffcc00;
}

.blog-img {
    width: 100%;
    border-radius: 8px;
}

.scroll-section {
    max-height: 300px;
    overflow-y: auto;
}
/* Button Style */
#backToTop {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #00bf63;
    color: white;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    #backToTop:hover {
        background-color: #0056b3;
        transform: scale(1.1);
    }