/* =========================================================
   GLOBAL RESET & BASE
   ========================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

/* =========================================================
   THEME VARIABLES (Material 3 inspired)
   ========================================================= */
:root {
    --primary: #6750A4;
    --primary-container: #EADDFF;
    --on-primary: #FFFFFF;

    --surface: #FFFFFF;
    --surface-variant: #F4F1F8;
    --on-surface: #1C1B1F;
    --outline: #D0C9E2;

    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;

    --elevation-1: 0 2px 6px rgba(0,0,0,0.06);
    --elevation-2: 0 6px 16px rgba(0,0,0,0.08);
}

/* =========================================================
   SECTION / CARD
   ========================================================= */
.section {
    max-width: 900px;
    margin: 60px auto;
    padding: 24px 20px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--elevation-1);
}

/* =========================================================
   HEADINGS
   ========================================================= */
.section h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--on-surface);
}

.section h2 .material-icons {
    color: var(--primary);
}

/* =========================================================
   APP HEADER
   ========================================================= */
.app-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.app-logo-large {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--elevation-2);
}

.app-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--on-surface);
}

.app-header p {
    font-size: 0.95rem;
    color: #5E5A6B;
}

/* =========================================================
   PRIMARY ACTION (PLAY STORE)
   ========================================================= */
.app-header a {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--on-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--elevation-1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.app-header a:hover {
    transform: translateY(-1px);
    box-shadow: var(--elevation-2);
}

/* =========================================================
   FEATURE LIST
   ========================================================= */
.section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section ul li {
    padding: 10px 14px;
    margin-bottom: 8px;
    background: var(--surface-variant);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: #3E3A4F;
}

/* =========================================================
   SCREENSHOTS GRID
   ========================================================= */
.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.screenshots img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--elevation-1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.screenshots img:hover {
    transform: scale(1.02);
    box-shadow: var(--elevation-2);
}

/* =========================================================
   PRIVACY SECTION
   ========================================================= */
.privacy-cta {
    margin: 8px 0 12px 0;
}

.privacy-cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.privacy-cta a:hover {
    text-decoration: underline;
}

.privacy-summary {
    font-size: 0.95rem;
    color: #444;
    background: var(--surface-variant);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

/* =========================================================
   LINKS (GLOBAL)
   ========================================================= */
a {
    color: var(--primary);
    font-weight: bold;
}
