body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f2f2f7; /* Light gray background similar to app store */
    color: #1c1c1e; /* Dark text */
    line-height: 1.6;
}

.app-header {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.apple-arcade {
    color: #bf5af2; /* Apple Arcade purple */
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 5px;
}

.app-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.app-header h1 {
    font-size: 2em;
    font-weight: 700;
    margin: 0;
    flex-grow: 1;
}

.age-rating {
    background-color: #e5e5ea;
    color: #636366;
    font-size: 0.8em;
    padding: 4px 8px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: 600;
}

.app-header h2 {
    font-size: 1.2em;
    color: #3a3a3c;
    margin: 0 0 10px;
    font-weight: 500;
}

.app-header .publisher,
.app-header .release-date {
    font-size: 0.9em;
    color: #636366;
    margin-bottom: 5px;
}

.app-header .disclaimer {
    font-size: 0.8em;
    color: #8e8e93;
    margin-top: 15px;
}

.app-content section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1c1c1e;
}

h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1c1c1e;
}

.screenshots .device-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #3a3a3c;
}

.screenshots .device-tabs span:first-child {
    color: #007aff; /* Blue for active/selected tab */
}

.screenshot-gallery {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling for images */
    gap: 10px;
    padding-bottom: 10px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.screenshot-gallery::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Opera */
}

.screenshot-gallery img {
    max-height: 400px; /* Max height for screenshots */
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent images from shrinking */
}

.description ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 20px 0;
}

.description ul li {
    background-color: #f7f7f7; /* Light background for list items */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.description ul li strong {
    color: #1c1c1e;
}

.customer-support,
.more-link {
    font-size: 0.9em;
    color: #007aff; /* Link color */
    margin-bottom: 10px;
    display: block;
}

a {
    color: #007aff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.information dl {
    display: grid;
    grid-template-columns: 100px 1fr; /* Two columns: 100px for dt, rest for dd */
    gap: 10px 15px; /* Row and column gap */
}

.information dt {
    font-weight: 600;
    color: #3a3a3c;
    grid-column: 1;
}

.information dd {
    margin: 0;
    color: #636366;
    grid-column: 2;
}

.information dd ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.information dd ul li {
    margin-bottom: 5px;
    font-size: 0.95em;
}

.information dt.more-link {
    grid-column: 1 / span 2; /* Span both columns for "more" link */
    text-align: right;
    font-weight: normal;
    font-size: 0.9em;
    margin-top: 5px;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .app-header,
    .app-content section {
        padding: 15px;
        margin-bottom: 15px;
    }

    .app-header h1 {
        font-size: 1.6em;
    }

    h2 {
        font-size: 1.3em;
    }

    .information dl {
        grid-template-columns: 80px 1fr; /* Adjust columns for smaller screens */
    }
}

@media (max-width: 480px) {
    .app-title-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .age-rating {
        margin-left: 0;
        margin-top: 5px;
    }
    .screenshot-gallery img {
        max-height: 300px;
    }
}

