:root {
    --bg: #bfd5d3;
    --card: #ffffff;
    --text: #1c2430;
    --muted: #6b7280;
    --border: #dbe3ee;
    --border-strong: #b8c6d8;
    --primary: #00423c;
    --primary-hover: #004b44;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
    transition: background-image 0.3s ease;
}
.app-shell {
    width: 100%;
    max-width: 980px;
}

.app-card {
    background: var(--card);
    border: 1px solid rgba(219, 227, 238, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.app-header {
    padding: 32px 32px 20px;
    border-bottom: 1px solid #eef2f7;
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #00423c;
}
.title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px; /* maakt 'm app-achtig */
    object-fit: cover;
  margin-top: -20px;
}
.subtitle {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.app-body {
    padding: 28px 32px 32px;
}

.field {
    margin-bottom: 28px;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

label {
    font-size: 14px;
    font-weight: 700;
}

.helper {
    font-size: 13px;
    color: var(--muted);
}

.url-input {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    font-size: 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fbfcfe;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.url-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45,108,223,0.12);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.camo-option {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.camo-option:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.camo-option.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45,108,223,0.14), 0 10px 24px rgba(15, 23, 42, 0.10);
}

.camo-thumb {
    aspect-ratio: 16 / 10;
    width: 100%;
    object-fit: cover;
    display: block;
}

.camo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}

.camo-name {
    font-size: 15px;
    font-weight: 700;
}

.camo-meta {
    font-size: 12px;
    color: var(--muted);
}

.checkmark {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(45,108,223,0.10);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 800;
    opacity: 0;
    transform: scale(.85);
    transition: opacity .18s ease, transform .18s ease;
}

.camo-option.selected .checkmark {
    opacity: 1;
    transform: scale(1);
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.status {
    font-size: 14px;
    color: var(--muted);
}

.primary-button {
    border: none;
    border-radius: 16px;
    height: 54px;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(180deg, #33424c 0%, #00423c 100%);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.primary-button:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #00766b 0%, #00554d 100%);
}

.primary-button:active {
    transform: translateY(0);
}
.copyright{color:var(--muted);text-align:center;margin-top:2em;font-size: 14px;}.copyright p{margin-bottom:0}.copyright a{color:var(--muted)}

@media (max-width: 820px) {
    .option-grid {
        grid-template-columns: 1fr;
    }

    .app-header,
    .app-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}