body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #f5f5f5;
            margin: 0;
            padding: 0;
        }
        .page {
            max-width: 900px;
            margin: 0 auto;
            padding: 24px 16px 48px;
        }
        h1 {
            text-align: center;
            margin-bottom: 8px;
        }
        .subtitle {
            text-align: center;
            margin-bottom: 32px;
            color: #555;
        }
        .card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
            margin-bottom: 24px;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        label {
            font-weight: 600;
        }
        input[type="email"] {
            flex: 1 1 220px;
            padding: 10px 12px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 15px;
        }
        button {
            padding: 10px 18px;
            border-radius: 8px;
            border: none;
            font-size: 15px;
            cursor: pointer;
            background: #0d6efd;
            color: #fff;
            font-weight: 600;
        }
        button:hover {
            opacity: 0.9;
        }
        .error {
            margin-top: 12px;
            padding: 10px 12px;
            border-radius: 8px;
            background: #ffe5e5;
            color: #b00020;
            font-size: 14px;
        }
        .success {
            margin-bottom: 12px;
            padding: 10px 12px;
            border-radius: 8px;
            background: #e5f7e5;
            color: #126b1a;
            font-size: 14px;
        }
        .photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 12px;
        }
        .photo-item {
            background: #fafafa;
            border-radius: 8px;
            padding: 8px;
            text-align: center;
            font-size: 13px;
        }
        .photo-item img {
            max-width: 100%;
            display: block;
            border-radius: 6px;
            margin-bottom: 6px;
        }
        .note {
            font-size: 13px;
            color: #666;
            margin-top: 6px;
        }
        .consent {
            font-size: 13px;
            color: #0b6b0b;
            margin-top: 6px;
        }
        .footer {
            margin-top: 40px;
            text-align: center;
            font-size: 12px;
            color: #777;
        }