/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default focus outline and add custom one */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #21AC42;
    outline-offset: 2px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FAF7F7;
}

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

/* Header */
header {
    background-color: #FFFFFF;
    padding: 16px 240px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding: 0;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    color: #DA4C00;
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo-link:hover .logo {
    opacity: 0.8;
}

nav {
    display: flex;
    gap: 91px;
}

.nav-link {
    text-decoration: none;
    color: #202020;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
}

.dropdown-arrow {
    font-size: 12px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1000;
    top: calc(100% + 8px);
    left: 0;
    padding-top: 8px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.dropdown-content a {
    color: #202020;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #F5F5F5;
    color: #21AC42;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-dropdown:hover .nav-link {
    color: #21AC42;
}

/* Hero Section */
.hero {
    background-color: transparent;
    padding: 40px 240px;
}

.hero-content {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 50px;
    border-radius: 24px;
}

.hero-text {
    flex: 1;
}

.subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #202020;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 12px;
    line-height: 96px;
}

.category-highlights {
    font-size: 64px;
    font-weight: 600;
    line-height: 96px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.highlight {
    padding: 4px 8px;
    border-radius: 8px;
}

.highlight.entertainment {
    background-color: #A5FFBA;
    color: #202020;
}

.highlight.finance {
    background-color: #9EAAFF;
    color: #202020;
}

.highlight.games {
    background-color: #FFAB7E;
    color: #202020;
}

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    width: 494px;
    height: 434px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px 0px #fafafa;
    object-fit: cover;
}

/* Sections */
section {
    padding: 40px 240px;
}

section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 20px;
    color: #202020;
}

/* App Cards - Large (with banner images) */
.app-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.app-card-large {
    background-color: #FAF7F7;
    border-radius: 20px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.app-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.app-banner {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    flex-shrink: 0;
}

.editor-card .app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.app-details {
    flex: 1;
}

.app-details h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
    color: #202020;
}

.app-category {
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    color: #202020;
    margin-bottom: 0;
}

.rating {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Buttons */
.btn-primary {
    background-color: #202020;
    color: #FFFFFF;
    border: none;
    padding: 16px 12px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #3FC45E;
}

.btn-secondary {
    background-color: #202020;
    color: #FFFFFF;
    border: none;
    padding: 16px 12px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #404040;
}

/* App Grid - Small items */
.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background-color: transparent;
    border-radius: 24px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.app-item:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.5);
}

.app-item h3 {
    text-decoration: underline;
}

.app-item .app-category,
.app-item .rating {
    text-decoration: none;
}

.app-item .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

/* Editor Grid (2 columns) */
.editor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.editor-card {
    background-color: #FAF7F7;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.editor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.editor-banner {
    width: 100%;
    height: 348px;
    object-fit: cover;
    border-radius: 12px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.news-card h3 {
    color: #000000;
}

.news-card:hover h3 {
    color: #21AC42;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-tag {
    display: inline-block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 8px;
    color: #000000;
}

.news-meta {
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
}

/* Footer */
footer {
    background-color: #FFFFFF;
    padding: 60px 240px 30px;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 15px;
    color: #000000;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #21AC42;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #000000;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
}

.footer-links span {
    color: #ccc;
}

/* App Detail Page Styles */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 240px 8px;
    font-size: 14px;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    text-decoration: none;
    color: #202020;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #21AC42;
}

/* App Detail Layout */
.app-detail-layout {
    display: grid;
    grid-template-columns: 953px 412px;
    gap: 48px;
    align-items: start;
    padding: 0 240px 40px;
}

.app-detail-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* App Header Card - White background container */
.app-header-card {
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* App Header Section */
.app-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.app-header-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    flex-shrink: 0;
}

.app-header-info h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 0;
    color: #202020;
}

.app-header-rating {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 8px;
    margin-bottom: 0;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Download Button & Metadata Row */
.download-metadata-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
}

/* Download Button */
.btn-download {
    background-color: #E6FFEC;
    color: #21AC42;
    border: 1.5px solid #21AC42;
    padding: 20px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.btn-download:hover {
    background-color: #A5FFBA;
}

.btn-download span:last-child {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: normal;
}

/* App Metadata */
.app-metadata {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.metadata-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 90px;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #E4E7FF;
    border-radius: 8px;
    flex: 0 0 auto;
}

.metadata-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    color: #202020;
    text-transform: uppercase;
    margin-bottom: 0;
    display: block;
}

.metadata-value {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #202020;
}

/* Author Info */
/* Main Content Card - Wraps all content sections */
.content-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #E4E7FF;
}

.author-details h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 4px;
    color: #202020;
}

.author-date {
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    color: #202020;
    text-transform: uppercase;
}

/* About Section */
.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 12px;
    color: #202020;
}

.about-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: #202020;
    margin: 0;
}

/* Expandable Sections */
.expandable-section {
    border-top: 1px solid #FAF7F7;
    padding: 24px 0;
}

.expandable-section:first-child {
    border-top: none;
    padding-top: 0;
}

.expandable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expandable-header:hover {
    color: #21AC42;
}

.expandable-header h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #202020;
}

.expand-icon {
    font-size: 24px;
    color: #202020;
    transition: transform 0.3s ease;
}

.expandable-content {
    padding-top: 16px;
    animation: slideDown 0.3s ease;
}

.expandable-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: #202020;
    margin: 0;
}

.expandable-content ul {
    list-style: disc;
    padding-left: 27px;
    margin: 0;
}

.expandable-content li {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 12px;
    color: #202020;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* Pros and Cons */
.pros-cons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.pros-box {
    background-color: #E6FFEC;
    border: 1px solid #21AC42;
    border-radius: 20px;
    padding: 20px;
}

.cons-box {
    background-color: #FFECE1;
    border: 1px solid #DA4C00;
    border-radius: 20px;
    padding: 20px;
}

.pros-box h3,
.cons-box h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-box h3 {
    color: #21AC42;
}

.cons-box h3 {
    color: #DA4C00;
}

.pros-box ul,
.cons-box ul {
    list-style: disc;
    padding-left: 27px;
    margin: 0;
}

.pros-box li,
.cons-box li {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
    color: #202020;
}

/* How to Section */
.how-to-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 12px;
    color: #202020;
}

.how-to-section ol {
    padding-left: 20px;
    margin: 0;
}

.how-to-section li {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
    color: #202020;
}

/* Conclusion Section */
.conclusion-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 12px;
    color: #202020;
}

.conclusion-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: #202020;
    margin: 0;
}

/* Related Apps Section */
.related-apps {
    margin: 48px 0 80px 0;
    padding: 0 240px;
}

.related-apps h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 20px;
    color: #202020;
}

.related-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.related-app-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 24px;
    background-color: #FFFFFF;
    border: 1px solid #E4E7FF;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.related-app-item:hover {
    transform: translateY(-2px);
    background-color: #F8F9FF;
    border-color: #9EAAFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-app-item h3 {
    text-decoration: underline;
}

.related-app-item .app-category,
.related-app-item .rating {
    text-decoration: none;
}

.related-app-item .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background-color: transparent;
    padding: 0;
}

.sidebar-section h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 20px;
    color: #202020;
}

.sidebar-app {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 24px;
    margin-bottom: 12px;
    border: 1px solid #FFAB7E;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.sidebar-app:hover {
    transform: translateY(-2px);
    background-color: #FFF5ED;
    border-color: #FB935C;
}

.sidebar-app .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

.sidebar-app .app-details h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-decoration: underline;
}

.sidebar-app .app-category,
.sidebar-app .rating {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .app-grid-large,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-detail-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Reduce all 240px padding to 20px for mobile */
    header {
        padding: 16px 20px;
    }

    .hero {
        padding: 30px 20px;
    }

    section {
        padding: 40px 20px;
    }

    .breadcrumb {
        padding: 20px 20px 8px;
        font-size: 12px;
    }

    .app-detail-layout {
        padding: 0 20px 40px;
    }

    .related-apps {
        padding: 0 20px;
    }

    footer {
        padding: 60px 20px 30px;
    }

    /* Reduce card padding */
    .app-header-card {
        padding: 20px;
        gap: 24px;
    }

    .content-card {
        padding: 20px;
        gap: 24px;
    }

    /* Fix download button + metadata row */
    .download-metadata-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .app-metadata {
        flex-wrap: wrap;
    }

    .metadata-item {
        height: auto;
        min-height: 70px;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    /* Scale down typography */
    .logo {
        font-size: 24px;
        line-height: 36px;
    }

    .hero h1,
    .category-highlights {
        font-size: 32px;
        line-height: 48px;
    }

    .subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    section h2,
    .related-apps h2,
    .about-section h2,
    .how-to-section h2,
    .conclusion-section h2 {
        font-size: 24px;
        line-height: 36px;
    }

    /* Header navigation */
    header .container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    nav {
        gap: 30px;
    }

    /* Hero section */
    .hero-content {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    /* Fix category highlights wrapping */
    .category-highlights {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .category-highlights span:not(.highlight) {
        display: none;
    }

    .highlight {
        display: inline-block;
        font-size: 28px;
        line-height: 40px;
    }

    /* Grid layouts to single column */
    .app-grid-large,
    .news-grid,
    .app-grid,
    .editor-grid,
    .related-apps-grid {
        grid-template-columns: 1fr;
    }

    /* App cards on mobile */
    .app-card-large .app-info {
        flex-wrap: wrap;
    }

    .app-card-large .btn-primary {
        width: 100%;
        margin-top: 8px;
    }

    .editor-card .app-info {
        flex-wrap: wrap;
    }

    .editor-card .btn-secondary {
        width: 100%;
        margin-top: 8px;
    }

    /* Reduce banner heights on mobile */
    .app-banner {
        height: 200px;
    }

    .editor-banner {
        height: 250px;
    }

    .news-image {
        height: 180px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* App detail specific */
    .app-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-header-icon {
        width: 100px;
        height: 100px;
    }

    .pros-cons-container {
        grid-template-columns: 1fr;
    }

    /* Sidebar */
    .sidebar-section h3 {
        font-size: 20px;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    /* Further reduce padding */
    header {
        padding: 12px 16px;
    }

    .hero {
        padding: 20px 16px;
    }

    section {
        padding: 30px 16px;
    }

    .breadcrumb {
        padding: 16px 16px 8px;
        font-size: 11px;
        gap: 6px;
    }

    .app-detail-layout {
        padding: 0 16px 30px;
    }

    .related-apps {
        padding: 0 16px;
        margin-bottom: 60px;
    }

    footer {
        padding: 40px 16px 20px;
    }

    /* Even smaller card padding */
    .app-header-card {
        padding: 16px;
        gap: 20px;
    }

    .content-card {
        padding: 16px;
        gap: 20px;
    }

    .hero-content {
        padding: 16px;
        gap: 16px;
    }

    /* Further reduce typography */
    .logo {
        font-size: 20px;
        line-height: 30px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .category-highlights {
        gap: 8px;
    }

    .highlight {
        font-size: 22px;
        line-height: 32px;
        padding: 2px 6px;
    }

    .subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    section h2,
    .related-apps h2,
    .about-section h2,
    .how-to-section h2,
    .conclusion-section h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .app-header-icon {
        width: 80px;
        height: 80px;
    }

    .app-header-info h1 {
        font-size: 20px;
        line-height: 30px;
    }

    /* Reduce gaps */
    nav {
        gap: 20px;
    }

    .app-detail-main {
        gap: 30px;
    }

    /* Smaller metadata items */
    .metadata-item {
        padding: 6px 10px;
        min-height: 60px;
    }

    .metadata-label {
        font-size: 10px;
        line-height: 16px;
    }

    .metadata-value {
        font-size: 14px;
        line-height: 22px;
    }

    /* App icons */
    .app-icon {
        width: 60px;
        height: 60px;
    }

    .sidebar-app .app-icon,
    .related-app-item .app-icon {
        width: 60px;
        height: 60px;
    }

    /* Pros and cons */
    .pros-box,
    .cons-box {
        padding: 16px;
    }

    .pros-box h3,
    .cons-box h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .pros-box li,
    .cons-box li {
        font-size: 16px;
        line-height: 26px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}